| Subject | Date Asked | Expert |
|
| PHP | 8/31/2009 | Jason Baker |
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 | Jason Baker |
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 | Jason Baker |
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 | Jason Baker |
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 | Jason Baker |
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 | Jason Baker |
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 | Jason Baker |
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 | Jason Baker |
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 | Jason Baker |
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 ...
|
| Uploading Multiple Large Files | 7/23/2008 | Pritesh Chandra |
Q: I am trying to set up a site to design calendars using my users pictures. In order to do that I have ... A: i am not sure what OS u using. to change the "upload_max_filesize = 20M", you need to open the ...
|
| mail spam | 7/23/2008 | Pritesh Chandra |
Q: I used this to send mail: <?PHP echo mail($to,'test','body','FROM: '.$from);?> but my mail is ... A: try this. $msg = "YOUR MESSAGE\n"; $to = "EMAIL_ADDRESS_OF_THE_PERSON_TO_RECEIVE_THE_EMAIL"; ...
|
| php mail problem | 7/23/2008 | Pritesh Chandra |
Q: I want to use php4 mail(). I can not find any php.ini in the server to set the SMTP but it says that ... A: sorry for the late reply. was very busy with work.. anyway. try this out. $msg = "YOUR ...
|
| RSS with PHP | 7/14/2008 | Pritesh Chandra |
Q: I sent you a question about building RSS with PHP. you sent me a sample code that worked well but ... A: heres what i want u to do.. open a email account on hotmail.com and attach the files and email it ...
|
| PHHP RSS | 7/12/2008 | Pritesh Chandra |
Q: I want to make a Php RSS generator. I used echo to produce xml tags. but the browser shows it as ... A: your code is fine. u just need to feed more details for the XML to work. try this <?php ...
|
| remove repeted | 7/12/2008 | Pritesh Chandra |
Q: This is Arul. I have Array like this. Array ( [0] => Array ( [sessionID] => ... A: Can you please provide more clearer details. u say u only want distinct values in the pages array, ...
|
| PHP Modules | 7/5/2008 | Pritesh Chandra |
Q: I purchased a php script and setup the settings in the Adm backend office. I have some HTML ... A: first i do not know which script u purchased so i need more information from u. second, the error ...
|
| Drop down list | 6/9/2008 | Pritesh Chandra |
Q: im ira.. im having trouble again..i've tried the codes you have asked me to implement but still i ... A: try out this code below. cheers pritesh chandra *************************** <? session_start();?> ...
|
| read,edit and update (php) | 5/27/2008 | Pritesh Chandra |
Q: i need ur help wih my codes. i have a table that contain different forms like the textfield,textarea ... A: do this <option <?php if ($status == "completed") echo "selected"; ?>>completed</option> <option ...
|
| login using sessions then add session to database | 5/11/2008 | Pritesh Chandra |
Q: I need help. I have a login system that on sucessful login starts a session. This is the code: ... A: So u want to get the $_SESSION['SESS_MEMBER_ID'] in the second form right? then use the hidden ...
|
| php certification | 3/28/2008 | Pritesh Chandra |
Q: it is fine. i want do php certification course in online give some idea or links pls Thanks A: Can you give me some information first so that its easy for me to give u some hints. 1) how many ...
|
| .htaccess | 3/28/2008 | Pritesh Chandra |
Q: i want to know about .htaccess and apache configuration with simple tutorial and any open source for ... A: for .htaccess please read this http://httpd.apache.org/docs/2.2/howto/htaccess.html and also ...
|
| php & javascript | 3/26/2008 | Pritesh Chandra |
Q: is any possible to get javascript variable into php except using hidden box? pls tell me A: yes you can. You can write a function that returns a value and call that javascript function from ...
|
| How to use value in javascript in php | 3/19/2008 | Pritesh Chandra |
Q: how can i use the value in js in php. because i want insert the selected value into db thx A: Please send me the js and state which selected value u want to be added to the db. And i will try ...
|
| booking system | 3/13/2008 | Pritesh Chandra |
Q: Im new to PHP. However, recently, I was asked to build a booking system and Im doing for the viewing ... A: for eg if the file is called index.php and u want to pass the value of name which is jen to that ...
|
| Show value from database in drop down list | 3/13/2008 | Pritesh Chandra |
Q: now i'm facing the problem that read the value from database and show in drop down list. The problem ... A: first, sorry for the late reply. was away from work and took a break for easter. anyway, i have ...
|
| booking system | 3/12/2008 | Pritesh Chandra |
Q: Im new to PHP. However, recently, I was asked to build a booking system and Im doing for the viewing ... A: i think u should read on this. http://www.php.net/manual/en/function.date.php To get the date in ...
|
| booking system | 3/11/2008 | Pritesh Chandra |
Q: Im new to PHP. However, recently, I was asked to build a booking system and Im doing for the viewing ... A: since you are new to PHP, i would first suggest that you download yourself the php manual. U can ...
|
| Show calculation in php with java script | 3/7/2008 | Pritesh Chandra |
Q: jason here again. i would like to ask about how to automatically display the total value of ... A: this can be done with PHP. (and with Javascript also). What i can do is help you complete this in ...
|
| php | 3/1/2008 | Pritesh Chandra |
Q: how to attach file with a mail in php A: I think u asking about the mail function in php right. if so then, u have to attach it via headers ...
|
| PHP modification | 2/28/2008 | Pritesh Chandra |
Q: Using the following PHP script I get a nice directory listing for a few directories that have too ... A: Please have a look at the code below. I have added the "Total files" & "Total folders" section for ...
|
| Array Problem | 2/22/2008 | Pritesh Chandra |
Q: Pritesh, I am a newbie to php/mysql and have been teaching myself using web tutorials over the past ... A: The code below should help you achieve this with easy. hope this helps. cheers pritesh chandra ...
|
| Array Problem | 2/20/2008 | Pritesh Chandra |
Q: Pritesh, I am a newbie to php/mysql and have been teaching myself using web tutorials over the past ... A: The thing is that you need to loop through the mysql_fetch_array to get each value individually. ...
|
| caching a form data | 2/11/2008 | Pritesh Chandra |
Q: I have the following question (once again :-) ): I have a form that I submit to another page, but ... A: Please have a look at the code below.. I do not know if u using PHP or not since ur action script ...
|
| how to show data in the graph form | 1/27/2008 | Pritesh Chandra |
Q: Morning Pritesh, Thank a lot for your answer before. Now i would like to ask its that any method to ... A: I think u should take a look at this. Download JpGraph at ...
|
| single quote in MySql | 1/22/2008 | Pritesh Chandra |
Q: I'm using a simple form to write to the database and then display the text on the website (e.g. ... A: stripslashes is the correct function to use. try this <p align="left" class="descrip"> <?php ...
|
| Problem with mysql database design | 1/20/2008 | Pritesh Chandra |
Q: Pritesh, i'm new in mysql, so i'm not sure how to design my database. The example table is look ... A: First since, you are new to mysql, i suggest you read this simple tutorial on mysql.com ...
|
| How to display the total value from user input | 1/20/2008 | Pritesh Chandra |
Q: jason here again... Thank for your last solution which help a lot. Now i'm facing another problem ... A: Well, i am guessing that you are displaying a form and a textbox in it where the user will fill in ...
|
| voting | 1/14/2008 | Pritesh Chandra |
Q: i made voting using mysql as follows.. <form ..... action="<?php ... A: first, you cant have setcookie as an action. the form action has to be a file that can process the ...
|
| how to display value from DB in drop down list | 1/13/2008 | Pritesh Chandra |
Q: Pritesh i would like to ask about how can i display my data from DB in drop down list value. For ... A: try this. But please fill in your database and table details first. If it doesnt work out, then ...
|
| hacking the password | 1/12/2008 | Pritesh Chandra |
Q: Sir, I have joined in an online game. In all the levels, the clue is given in the source of the ... A: 1)I hate numbers is the title of that page. 2)pwm is the section where u fill in the password. the ...
|