A scripting language popularly known as PHP, originated in 1995 by Rasmus Lerdorf. PHP stands for Personal Home Page Tools. In just maximum 10 years this language has become a favorite of internet marketers, even small business webmaster with the newer and stable version of the internet.
Why is PHP so popular?
Before PHP, there was Javascript. It does some really cool things like rotate ads, graphics, text etc. But unfortunately it is not tough to readable by the search engines. Who are working on internet, they love PHP because it does all the Javascripts does and everything that does and the turns up on the pages is read and counted by the search engines.
One thing is that, you need to get a script written in PHP and learn how to install a script on the web server. In fact PHP is not software which you can simply download, installed and open on your computer. If you want to import and rotate articles to keep my content sites full of good and search engine. It also should be fresh content. Even you can use PHP to complete this.
Where To Find PHP Scripts.
You can find PHP script at sites that host a listing of hundreds of different scripts. It includes all kinds of CGI and Java. All those sites have a section of scripts written just in PHP, which you have to find some really nice free scripts and some low cost PHP scripts to improve our websites performance and place in the search engines. One thing is that, you would learn to write PHP since there are so many ways a webmaster as well as internet marketer could use the script to help with automation and site improvements.
Watch the video related to Php Scripts
didn’t allow php image scrips, only jpg, gif, and png… But it works now.
WARNING: Bigger images, take longer to load. www.members.lycos.nl (rename to .php) To use the script, upload it to a webhost that allows php scripts and then put the images in the same folder as that file. Go to channel design and put the link to the php script in the “Background Image (URL):” How I found out I can do this trick: youtube.com Also, check out thegaminguniverse.com for all your game (re)making needs. …
Help answer the question about Php Scripts
Where can I download a free wap community php scripts with sql file?Anyone who know where can I download these scripts? Like pinoyWAP.net ,wap.net.ph arawap.net and others? Please help me . .thanks in advance . .
About Author
Me Santanu Boral, describe the PHP terms on the web where you can find additional information.
Tags: awesome, cool, customize, hacks, php, pimp, script, Youtube
Good Video this is what i am looking for Terms and how to do it it lets you make your own code by knowing what things do such as basic commands “functions” as Print. Thanks for the Vid man i am trying to learn to Write PhP im only 15 atm and can write HTML Javascript. To bad my school said PHP was to advanced to teach….. URRG lol Thanks again good vid.
Dose anyone know how to write a GTP (Get Paid To) php wbsite script
Ah … depends on the person watching. Some think it’s great, others don’t.
You can use a menu maker if you're not sure how to code something on your own. There are a gazillion of them out there and many are even free. Pick one that suits you…
http://www.google.com/search?source=ig&hl=en&rlz=&q=web+menu+maker&btnG=Google+Search
The "something" can be accessed very easily with PHP. If you have a web page address that looks like this:
index.php? month=september&name=smith&age=24
Then you can access those values in PHP like this:
<?php
echo $_GET('month');
echo $_GET('name');
echo $_GET('age');
?>
This will print septembersmith24.
As for accessing a text file, that's easy too:
<?php
$text = file_get_contents( 'textfile.txt' );
echo $text;
?>
This will read the entire contents of the file textfile.txt into the variable $text, and then print it out for you.
You can also access many databases with PHP, I highly recommend you use MySQL. It's a bit too complicated to describe here, though. There are some good references made to good books by folks above. The "Teach Yourself" series is great.
http://www.phpfreaks.com
If you are ready invest: Get Larry Ullman: 'PHP …" Nice book
If you have sensitive files that should be accessible only by scripts, put them somewhere on the server other than the web root. Your scripts will still be able to access them, but nobody can pull them off the web.
/
– /htdocs
– — /www.site.com
– /securedocs
Thanks.
Stef
http://www.elite.ro/free-hosting-php/
http://www.awardspace.com/
http://www.free-phphosts.com/
http://www.freehostia.com/free_hosting.html
Really what you need to run php is some one who also offers a sql database these do but I dont get the website builder thing?
if your messing around with php why would you need a WYSIWYG builder?
good stuff. really clear!
this kinda draggs along…
Hi,
Best Site to Learn PHP http://www.w3schools.com/php/default.asp
I know this Answer Will solve your problem. Do one thing visit http://www.zakhas.com/Forum be a member first and Download 1800 Industry standard PHP Projects and source codes. Directly without any interrupting. Follow below link for direct access to the download link.http://www.zakhas.com/Forum/ViewThread.asp?Thread=161&Forum=26
Definitly it will solve your problem. Download it BE Quick.
Or you can try this sites below
http://www.planetsourcecodes.com
or
http://www.scriptswave.com/free/scripts/php_scripts/9.html
If you find this answer is best then you can choose it as best answer.
http://www.phpfreaks.com/tutorial_cat/8/Basics-&-Beginner-Tutorials.php
Thanks.
Windows XP PRO has functionality for running a web server built in
IIS is an option, however, under a "Default" installation of XP Pro, it might not be installed
Control panel – > add / remove programs -> Add Remove Windows COmponents – Check "Internet Information Services"
You could also look @ apache as has been mentioned, however, IIS is PART of windows.
I don't think there is such a thing as a PHP emulator, and I don't know why you'd need one. It's likely that you either didn't install PHP and apache correctly or you aren't using it right.
Use XAMPP to install PHP and apache. It will also include MySQL and phpMyAdmin (which you will need sooner or later) and some other good stuff too. It's much easier than trying to configure PHP and apache by hand. Best of all, it's all configured to run together immediately. XAMPP and all of its components are free and open source.
http://www.apachefriends.org/en/xampp.html
Once you've got a web server, you need to turn it on (that's not automatic.) There's a nice control panel that makes this easy with XAMPP. PHP files will only work if they're in a specific subdirectory (usually htdocs in the apache directory structure) Also, you can't just load a PHP file into the browser the same way you do an HTML file. Instead, you need to point the browser to
http://localhost/yourFileName.php
PHP is called by the server, so if you use a mechanism (like the file:// directive) that bypasses the server, your PHP programs won't run.
Glad you liked it.
Thanks,
Stef
Is good for a beginner like me, nice tutorial and thank you very much.