Jump to content

Help with PHP in general


anon

Recommended Posts

anon,

 

http://www.google.com/search?q=php+tutorials

 

The first 5 results look pretty good as far as learning goes

 

Also a good straightforward book is "How to do Everything with PHP & MySql" by Vikram Vaswami. It is one I used when first learning PHP. I still refer back to it every now and again.

 

Not that recommend illegal downloads, but torrent searches can produce a vast amount of e-books to learn from.

 

Link to comment
Share on other sites

  • 2 weeks later...

anon,

 

http://www.google.com/search?q=php+tutorials

 

The first 5 results look pretty good as far as learning goes

 

Also a good straightforward book is "How to do Everything with PHP & MySql" by Vikram Vaswami. It is one I used when first learning PHP. I still refer back to it every now and again.

 

Not that recommend illegal downloads, but torrent searches can produce a vast amount of e-books to learn from.

 

Thanks very much y'all. From what i am requesting, could you do it with PHP?

Link to comment
Share on other sites

From what i am requesting, could you do it with PHP?

 

Do what? Build a website?

 

Of course!

 

Sorry, i mean, can you make a site which will collect information from another, and display it on your website?

Link to comment
Share on other sites

Yes that is possible in PHP.

 

<?php

$source = file_get_contents("http://www.google.com");

echo $source; // Outputs the content of Google.com

?>

 

 

So basically, what it does, is goes to Google, and collects all the information shown?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.