SirPaladin 0 Posted August 27, 2006 Report Share Posted August 27, 2006 Perhaps practical projects, BBCode like it`s been mentioned, how to code finite data trees (for forums, for example), paging etc.. It`d be very interesting. Although you could just stick to theory and add a detailed OOP page. Quote Link to post Share on other sites
boen_robot 107 Posted August 27, 2006 Report Share Posted August 27, 2006 I think a fine addition to the PHP tutorial that would be good, without going too much spoonfeeding on the user, if it includes the regular expression functions.Now that theese functions are used in the Secure Mail script, such explanation is more requred then before. Not to mention regular expression functions are used in a lot of other scripts, such as the above mentioned BBCode for example. Quote Link to post Share on other sites
Guest Mwnci Posted September 5, 2006 Report Share Posted September 5, 2006 How about some more advanced features of PHP? For example sockets and how to use exec...Also how about a page of challenges to test your php ability? Quote Link to post Share on other sites
eguru 0 Posted September 11, 2006 Report Share Posted September 11, 2006 can add some examples for php too. Quote Link to post Share on other sites
Guest Jorn van Engelen Posted October 18, 2006 Report Share Posted October 18, 2006 This PHP tutorial was very usefull.The only thing I couldn't find was how to put an [enter] in a file. I found the awnser of this question 2 weks ago. Just writefwrite($file,"\r\n");in your PHP file.I think this is very usefull for people who want to make a database without using mySQL. Quote Link to post Share on other sites
reportingsjr 4 Posted October 19, 2006 Report Share Posted October 19, 2006 Hmm, the carriage return (\r) and newline (\n)? Are you sure? And I dont think you need the return, just the \n FYI . Quote Link to post Share on other sites
justsomeguy 1,135 Posted October 19, 2006 Report Share Posted October 19, 2006 It depends on the OS. DOS format is CRLF, Unix-based systems prefer LF only, and Mac-based systems prefer CR only.btw: LF = line feed = \nCR = carriage return = \rA Linux system seeing \r\n will sometimes show 2 newlines. But, for things like email headers, \r\n is required by the RFC to separate them, even though just \n is used in the email body. Quote Link to post Share on other sites
sree06 0 Posted November 11, 2006 Report Share Posted November 11, 2006 hi,PHP tutorial is nice ....adding to the above disc v can have something rel to ADO connectivity thru PHP - which is very useful 4 many appln proging ....then something covering PEAR packages ....shopping cart integrations ....last but not the least something rel to CMS tools ... Quote Link to post Share on other sites
justsomeguy 1,135 Posted November 11, 2006 Report Share Posted November 11, 2006 Specific applications like shopping carts and CMS programs typically don't have tutorials. You pretty much have to design it, break it down into features that you want and then figure out how to make each feature work individually. Quote Link to post Share on other sites
mosquito.tyler 0 Posted May 9, 2007 Report Share Posted May 9, 2007 Personally, I would like to see a section added about PHP Image manipulation and the GD library and such. It wouldn't have to be a very in-depth tutorial, basically one just to let people know what they can do. But a full PHP Image reference would be useful. Quote Link to post Share on other sites
Anders Moen 2 Posted May 9, 2007 Report Share Posted May 9, 2007 Yeah, but you can also go to www.php.net/gd Quote Link to post Share on other sites
mosquito.tyler 0 Posted May 9, 2007 Report Share Posted May 9, 2007 Yeah, but you can also go to www.php.net/gd Yes, you could also go to PHP.net for examples of every other item on W3S. I think that some of the missions of W3S is to simplify concepts for beginner developers, as well as provide comprehensive references to the more advanced. A PHP GD section deserves a spot I think. Quote Link to post Share on other sites
Guest Necrotising Fasciitis Posted November 15, 2007 Report Share Posted November 15, 2007 One very simple and easy to set up Server Package is AppServ. It is available from http://www.appservnetwork.com/. It includes PHP, MySQL and Apache and will run on any windows computer. Took me five minutes to install and have my server running nicely. Quote Link to post Share on other sites
Xalor 0 Posted September 22, 2008 Report Share Posted September 22, 2008 We should have something that deals with CMS with the PHP, I don't see anything that makes PHP work with SQL in there. Thats important for game designers, who plan to host their game online, or private servers for games like MapleStory, who need a database system for their website. Quote Link to post Share on other sites
jeffman 86 Posted September 22, 2008 Report Share Posted September 22, 2008 I don't see anything that makes PHP work with SQL in there. http://www.w3schools.com/php/php_mysql_intro.asp Quote Link to post Share on other sites
shadowblade 0 Posted September 25, 2008 Report Share Posted September 25, 2008 Something that needs to be fixed right away...On the file upload section (http://w3schools.com/php/php_file_upload.asp) the file_exists() function is called, but the value passed to it is the user's file name, so with the given setup, the script will always stop because the file that the user selected to upload does in fact exist.This can be fixed like so... <?php$userfile = $_FILE['formfile']['name'];$name = basename($userfile);$dir = "some_upload_directory/";if (file_exists($dir.$name)) //code?> On that note, a few other things I'd like to see in the file upload section are a reference of MIME types for common files (and the fact that $_FILE["file"]["type"] is a MIME type and not just a common extension - afaik this isn't mentioned anywhere).Also, I don't think it is mentioned ever that the "file" in $_FILE["file"] is the name of the file field in the form. I can see this being very confusing for a beginner. It should be changed to something to differentiate it from the $_FILE array. Quote Link to post Share on other sites
Jack McKalling 2 Posted September 25, 2008 Report Share Posted September 25, 2008 ...On that note, a few other things I'd like to see in the file upload section are a reference of MIME types for common files (and the fact that $_FILE["file"]["type"] is a MIME type and not just a common extension - afaik this isn't mentioned anywhere)....Actually there is a MIME-types list on W3Schools. Just not in that tutorial :)See this list: http://www.w3schools.com/media/media_mimeref.asp (Media Tutorial)You're right about the "file" name of the file-input, indeed confusing. I would choose "userfile" or so. Quote Link to post Share on other sites
jlhaslip 1 Posted September 26, 2008 Report Share Posted September 26, 2008 On that list, I could not find application/x-httpd-php or application/x-httpd-phps ???*edit*I forgot to RTFM. "The reference below is a list of MIME types supported by Microsoft Internet Information Server version 5."M$ uses ASP don't they? Quote Link to post Share on other sites
justsomeguy 1,135 Posted September 26, 2008 Report Share Posted September 26, 2008 You can install PHP on IIS as well, in fact every server I've installed PHP on was IIS.I don't really think that w3schools has a "complete" list of anything though. Quote Link to post Share on other sites
Synook 47 Posted September 28, 2008 Report Share Posted September 28, 2008 There can never really be a complete list of MIME types - for example, a new one could be invented for appml: application/appml+xml, and as long as the required agents understand, it is fine.IIS don't call their server a HTTPD though, so it may have a different MIME type for PHP documents. Quote Link to post Share on other sites
justsomeguy 1,135 Posted September 29, 2008 Report Share Posted September 29, 2008 The IIS that I'm looking at doesn't even have a mime type set up for PHP. That would make sense, because it's not sending the PHP files for download. There is an application mapping for PHP files, but not a mime type. If I wanted the server to send the files instead of execute them I could remove the application mapping and add a mime type. Quote Link to post Share on other sites
No Name At All 0 Posted March 22, 2009 Report Share Posted March 22, 2009 Sorry, but there is no way I'm going to read through all those replies, I just want to say that PHP need the 'try it yourself' links. Quote Link to post Share on other sites
justsomeguy 1,135 Posted March 23, 2009 Report Share Posted March 23, 2009 Not going to happen. It would be an enormous security threat to allow people to enter arbitrary server-side code for the server to execute. That goes for both PHP and ASP. There's no try-it editor for ASP code, either. Only client-side code. If you want to execute server-side code you need your own server (or space on someone else's). If you want to set up your own site to allow people to execute their own PHP code, fine, but don't expect your server to stay online very long. Quote Link to post Share on other sites
skaterdav85 12 Posted December 27, 2009 Report Share Posted December 27, 2009 If the PHP tutorial is still being worked on, I'd like to see more object oriented concepts in php. Because the tutorial doesnt cover OOP, I've been reading "PHP Object-Oriented Solutions" by David Powers, which is a great book for a beginner, as well as getting help from forum members. It'd be nice to have reference of some of the basics so i dont have to flip through my book or go to php.net all the time. Quote Link to post Share on other sites
Comfy 0 Posted June 8, 2010 Report Share Posted June 8, 2010 http://w3schools.com/php/php_looping.aspI'm extremely new to web design and programming so was hoping some one could clarify the below as it may be my understanding that is incorrect.In the tutorial<html><body><?php $i=1;do { $i++; echo "The number is " . $i . "<br />"; }while ($i<=5);?></body></html> which would output: The number is 2The number is 3The number is 4The number is 5The number is 6 But if my understanding of loops is correct this isn't strictly right, the i increment should be below the echo line: <?php $i=1;do { echo "The number is " . $i . "<br />"; $i++; }while ($i<=5);?> which would return an output of: The number is 1The number is 2The number is 3The number is 4The number is 5 If I'm mistaken I apologise, I'm alittle confused./Comf Quote Link to post Share on other sites
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.