No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
[b]Configuring PHP with MySQL[/b] [B]Intro[/B] To use PHP with MySQL, of course you need to install MySQL server on you system first. On my local system, I have MySQL server installed in \mysql directory. If you need help on installing MySQL on your system, please read "Herong's Notes on SQL". … | |
Re: You can try this one. I like it: [url]http://www.herongyang.com/php[/url] | |
Hi, I have the following simple test script: [CODE]<?php $links = array('URL'=>'www.google.com'); print("$links['URL']"); // compilation error print("$links[URL]"); print($links['URL']); print($links[URL]); // execution warning ?>[/CODE] But two lines are giving me problems. Can any one help to explain? Thanks. --Mark | |
Re: [QUOTE=Lafinboy]The values in [ ] in the function are optional, but if you want to skip one you need to put a placeholder value in, along the lines of: [code] setcookie("TestCookie", $value,'','/','domain.com');[/code][/QUOTE] The above code will not work. Try this: [CODE]setcookie($cookieName, $cookieValue, NULL, $path, $domain);[/CODE] You can read more tutorials … | |
[b]Introduction and Installation of PHP [/b] [B]Intro[/B] This tutorial describes: [INDENT] What is PHP. Download PHP binary version for Windows. Writing the first PHP script. Installing PHP on IIS as CGI.[/INDENT] [b]What Is PHP? [/b] PHP stands for PHP: Hypertext Preprocessor, a recursive acronym. It is mainly a Web server … | |
Have you noticed that there are way more C++ developers than Java developers here in this community. See the comparison of the two primary forums: [CODE] Forum On-line members Threads Posts C and C++ (50 Viewing) 2,941 14,622 Java (18 Viewing) 1,212 4,976 [/CODE] Is it true that there are … | |
Re: Agree. ResourceBundle is designed for localization purpose. It is commonly used to localize text messages in an application, where a key name is assigned to a set of localized version of a specific text message. For information, see the second part of [url]http://www.geocities.com/herong_yang/jdk/i18n.html[/url]. Richard, an easy way to migrate your … | |
Re: Personally, I would recommend "Ivor Horton's Beginning Java2, JDK 5 Edition" - Very tutorial based. I've used many Ivor's language books. They are all easy to read. Tutorials are easy to follow. They can be used as references too. --Mark [url]http://www.geocities.com/herong_yang/jdk/[/url] One of the best Java/JDK free tutorial books I've … | |
Hello, Just joined this site today. Want to say hi to everyone. My goal is to promote this programming tutorial site: [url]http://www.geocities.com/herong_yang[/url] Any suggestions? :D Thanks, --Mark |
The End.