| Subject | Date Asked |
|
| PHP | 8/31/2009 |
Q: I want to setup on my website where the logged in user clicks submit on the form data...and then the ... A: The echo command does exactly what it says. For instance if you were to go into dos and type in ...
|
| PHP | 8/30/2009 |
Q: I want to setup on my website where the logged in user clicks submit on the form data...and then the ... A: What I mean by an echo statement is the syntax to output writing/text to the screen. So if someone ...
|
| PHP training | 7/11/2009 |
Q: I am a long time computer consultant with programming background, and would like to learn PHP. Can ... A: Well Jan, I can not recommend any specific tutorial as I am not sure of your level of expertise with ...
|
| Online forms using PHP | 6/20/2009 |
Q: What PHP coding is necessarry to create on online form, where people can enter information and it ... A: I am going to write out some code for you and can explain it line by line after im finished. <? ...
|
| Retrieving value from "pagename.php?i=" | 6/17/2009 |
Q: When I acess my datapage.php passing a value as, for instance, "datapage.php?test=34", how to ... A: First off you would need to define the test variable i.e. $test=$_GET['test']; That $_GET as well ...
|
| Image upload | 5/29/2009 |
Q: i need a full code "upload(and retrieve) image to through php and save it in mysql" A: To retrieve something from mysql table I usually do something like this <? $table="imageshere"; ...
|
| My database | 5/19/2009 |
Q: I asked this question on yahoo answers. The 2 answers I got contradicted eachother. So maybe you can ... A: Sorry for the delay. To be quite honest I do not know as I am not familiar with the s2g technology, ...
|
| PhP on my PC | 5/17/2009 |
Q: I am interested in learning PHP to write personal pages for myself. I know from experience that I ... A: Well Joe, as long as you have either IIS or Apache set up along with php and maybe even a mysql ...
|
| Session | 5/13/2009 |
Q: i have a php protected website. my question is this: how can i display loggedin members to other ... A: What you will want to do is set up a table called onlineusers. create table onlineusers(userid int ...
|