anon Posted May 11, 2007 Share Posted May 11, 2007 Hi, i'm new so can you please give me some resources to find and learn more about PHP? I'd like to start a new site and I would like to start here. Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/ Share on other sites More sharing options...
per1os Posted May 11, 2007 Share Posted May 11, 2007 www.php.net The only site/resource you should ever need. Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-250841 Share on other sites More sharing options...
Trium918 Posted May 11, 2007 Share Posted May 11, 2007 www.php.net The only site/resource you should ever need. I cannot see how you were able to learn from php.net. How do you navigate around that thing? Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-250886 Share on other sites More sharing options...
only one Posted May 11, 2007 Share Posted May 11, 2007 use the search Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-250888 Share on other sites More sharing options...
corbin Posted May 11, 2007 Share Posted May 11, 2007 I would suggest learning the basic PHP syntax from a tutorial, but the logic and function names come mainly with time and lots of looking at references (php.net ;p) a lot at first. Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-250889 Share on other sites More sharing options...
per1os Posted May 11, 2007 Share Posted May 11, 2007 I knew syntax mainly from java/javascript/c++/perl. Needless to say php is quite different but that gave me a backbone to it and looking at a few examples on the php.net user contributions I was able to find the syntax needed. http://us2.php.net/manual/en/language.basic-syntax.php Not to mention that =) Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-250897 Share on other sites More sharing options...
corbin Posted May 11, 2007 Share Posted May 11, 2007 My main problem was finding functions to do what I wanted at first.... Wish I knew C++... ;p lol Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-250904 Share on other sites More sharing options...
Trium918 Posted May 11, 2007 Share Posted May 11, 2007 My main problem was finding functions to do what I wanted at first.... Wish I knew C++... ;p lol I know a little C++, java,Oracle,VB.net,Q-basic,and html/javascript. Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-250906 Share on other sites More sharing options...
chronister Posted May 12, 2007 Share Posted May 12, 2007 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. Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-251041 Share on other sites More sharing options...
ryeman98 Posted May 12, 2007 Share Posted May 12, 2007 I learned all the languages I know from w3schools.com Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-251043 Share on other sites More sharing options...
anon Posted May 24, 2007 Author Share Posted May 24, 2007 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? Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-260671 Share on other sites More sharing options...
trq Posted May 24, 2007 Share Posted May 24, 2007 From what i am requesting, could you do it with PHP? Do what? Build a website? Of course! Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-260715 Share on other sites More sharing options...
anon Posted May 26, 2007 Author Share Posted May 26, 2007 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? Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-262019 Share on other sites More sharing options...
chigley Posted May 26, 2007 Share Posted May 26, 2007 Yes that is possible in PHP. <?php $source = file_get_contents("http://www.google.com"); echo $source; // Outputs the content of Google.com ?> Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-262020 Share on other sites More sharing options...
MasterACE14 Posted May 26, 2007 Share Posted May 26, 2007 I highly reccommend the following 2 PHP Tutorials. http://www.tizag.com/phpT/arrays.php http://www.w3schools.com/php/default.asp Regards ACE Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-262021 Share on other sites More sharing options...
anon Posted May 26, 2007 Author Share Posted May 26, 2007 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? Quote Link to comment https://forums.phpfreaks.com/topic/50984-help-with-php-in-general/#findComment-262065 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.