sometimes a cigar is just a cigar
Header image

i have studied c++ for my exam today and i will explain how can you compile c/c++ in linux also there were some error that i want mention. 1.install eclipse (not necessary for compiling) probably you can find it from your package manager if there isn’t use this link: http://www.eclipse.org for pardus open pisi search … Read more

Open console and write pisi update-repo sudo pisi it apache mysql-server mod_php sudo mysql_install_db sudo service mysql-server on sudo service apache on After you should restart your comptuter Test <?php echo “Hello World”; ?> save this as test.php and copy /var/www/localhost/htdocs/ write firefox http://localhost/test.php if you do eveything correct,  you will see hello world on … Read more

Difference between include and require: if you use include and there is not page that you include , you get a warning. Otherwise if you use require instead of include you will get a fatal error. for more information http://tr2.php.net/include/ http://tr2.php.net/require