mizako
Members-
Content Count
373 -
Joined
-
Last visited
Everything posted by mizako
-
Really nice FaLgor.I was asking myself for a long time how could i set a login system with php and you give the clue. Somethings about your script:- What is exactly conn.php and why is it necessary in register.php?
-
Xampp of apachefriends includes apache, perl, php, mysql and lot more all together. PD. Opensource is great.
-
I am looking forward to visit Serbia next year. I have really nice Serbian friends and i am sure it is a nice place.
-
Maybe it is supported but from my experience i do not remember it. XSL is some tricky in the beggining but at the end after scratching your head a bit, XSL can transform almost everything.
-
A friend told me
-
I am going to propose you a really not elegant solution However it maybe useful to you. -> Grab the variable out of the URL with PHP. -> Open the XML doc you want to parse with PHP add a line within the variable value in it. -> Then just code your XSL to parse that variable introduced previously in the XML and use it for the xpath expression. I hope i was clear enought. If not PM.
-
The big step is to change the way of thinking. C++ forces to think you about the data the application is going to manage and C forces you to think about the goal to be achieved. A lot of people uses C++ as a C with more functionality. There is really few people who really use C++ in a pure oriented object way.I think that C is really powerful but C++ is even more powerful. However a lot software development is made in C. Maybe because is easier to find C programmers than C++ programmers.
-
Thanks for your answer guys. I am happy you find my layout easy to navigate. I like too make sites simple. I am a bit freak about usability. I mean i do not want to loose time trying to imagine where or how can i find some information. Do you really considered simple as a bad quality for a site? Don't you think one of the best things of for example google is its simple but effective interface?Answering michaleq:- The round picture of the clock is one of the simbols of the city. I like your idea about the borders. I am not very good with images and graphics design but i willl work on it soon.- You are right I used Comic Sans. i thought it look nice. The potential site visitors are not kids so maybe i should change that. Thanks for your feedback again
-
What Do You Think? template preview
mizako replied to PhrostByte's topic in Websites and Web Designing
I like your site. But i think that the display area is too small. I am right now browsing with a 14" laptop and it looks tiny. Also it does not load really fast. -
- The forum one looks pretty much the same as Xisto. The layout is good but it is not original at all. - I do not like the colour combination in the search engine. Green, blue text (with blue background) and yellow look not really profesional. Take it easy maybe darkblue with white colour for the text. - The last one is full with sucking pop ups. -
-
If anyone can give me one my email is:canredondo at hotmail dot com Thanks in advance
-
This is a website i made about my experience in Graz(Austria). http://forums.xisto.com/no_longer_exists/ Waiting for your feedback
-
Installing Apache,mysql And Php In Windows Good text for beginners
mizako replied to Lyon's topic in Programming
I have read a lot of posts about installing Apach/Mysql and Php in Xisto. Maybe this thread should continue one of those. I always recommend apachefriends for Apach/MySQL and PHP combination. It is really easy to install and uninstall. -
I suppose you want to provide pagination using PHP. I created a guestbook with pagination for one of my pages. Basically i have all my entries in a MySQL database and using php code i achieve pagination. Maybe if you do not want to use a database, you can modify the algorithmus a little bit to work with text files. Here is my code: [/br]<?php[br] $sql_db = "Db_Name";[/br] $sql_user = "Db_User";[br] $sql_pass = "Db_Passwd";[/br] $sql_table = "Db_Table";[br] [/br] if(isset($pos)==0)[br] $pos=0; // start position for the page indexer[/br] $count=3; // number of displayed items per page[br] [/br] mysql_connect("localhost", $sql_user, $sql_pass);[br] mysql_select_db($sql_db);[/br] $result = mysql_query("select MAX(id) from ".$sql_table.";");[br] $data = mysql_fetch_assoc($result);[/br] $size = $data['MAX(id)'];[br] $result = mysql_query("SELECT * FROM ".$sql_table." where id>".$pos.";");[/br] if($result)[br] {[/br] $i=0;[br] while(($data = mysql_fetch_assoc($result)) && ($i < $count))[/br] {[br] // Here you should add text[/br] $i++;[br] }[/br] }[br] mysql_close();[/br] print "<div>Pages:";[br] for($j=0; $j<$size; $j++)[/br] if(!($j % $count))[br] print "<a href=\"book.php?pos=".$j."\">".(($j/$count)+1)."</a>\n";[/br] print "Total number of entries: ".$size."\n";[br] if ($pos > 0)[/br] print "<a href=\"book.php?pos=".($pos-$count)."\">Back</a>\n";[br] if($size > $pos+$count)[/br] print "<a href=\"book.php?pos=".($pos+$count)."\">Next</a>\n";[br]?>[/br] Let me know if i can help you in oder way.
-
Yap, Post the source code and we can give it a chance
-
Hi,Without changing anything it prints already "-" twenty times and much more. I suppose it has to print exactly twenty times. right?
-
HI,Some tools for programming under linux:-> compile: gcc or g++->debug: gdb (i use debug using gdb but inside emacs, it is really easy to use)-> editors: vim, emacs, kateSome words about editors. In the emacs vs vim war i am vim partizan. However emacs is really powerfull editor. If you find both too complicated maybe you should try the graphical version (Gvim or xemacs). Kate comes with kde and it is more intuitive and easier for newbies. It is quite ok too. Good luck!
-
For pbrugge:I will give it a change to your suggestion in the next days. Now i have no time. I will let you know as soon as i tried. Thanks everybody for your feedback.
-
Hi, I use Knoppix on my box at home. I am quite happy with it. I installed in the hard disk and in my case it does not run slowly. However i do not know what do you mean with "the help of prelink packages". Pbrugge, if you can explain it, that would be great. Maybe i could also increase my box speed. :-)Regards,Sergio
-
Show Your Desktop ;) image max 640x480 link back to big on
mizako replied to pbrugge's topic in Operating Systems
pbrugge. Reallz nice desktop. Do you really manage to work with that wallpaper!!!! -
First of all, SORRY for not replying in long time to this thread. It is long is storie and a lot of excuses you do not deserve to hear. I located where my mozilla mail profile is. You define it in edit/Mail&Newsgroups settings. Basically as i told in the first mail, mozilla stores all the mail (of an individual folder of your local folders) in two files. The real mail (i mean the from, to, body, subject... stuff) is stored in the file without extension. So, i am able to backup all the mail. If you do not believe edit it with your favorite editor and you will find it. But later i am not able to simulate a recovery. I mean until now i did not find any way to import all my mail into anohter mail client. Such us thunderbird or whatever. If anyone know how to do it, please tell me. Right now i am stack in the mail client of mozilla 1.6 because i am not able to move into another client importing all my old mail.
-
Most of my contacts are on msn and some in ICQ. Because of that i use instant messenger client which support both of them simulatneously. I think Gaim or Kopete are quite good options.
-
I run my own webserver. I have it because i love web development. However i upload my sites to others webservers (eg. Xisto) when i am finished. I use also the combination of php, mysql and apache. I am quite happy with it and after that you can migrate your work to a lot of webserver because most of them support that combination. You can set up that combination (php, mysql and apache) easily with the packet provided by apachefriends but it is easy to configure apache individually too.