1,741 Posted Topics
Re: [quote]Eyes: 1 blue 1 green Location: Australia (country where they mass produce kangaroos) Age: 50 (acting as 75) Hobbies: Study, swimming when it gets flooded, Study and Study[/quote] Lmao ! Thats funny ;) | |
Re: [QUOTE=jbennet;586521]we are top of the food chain. we make the rules.[/QUOTE] Unfortunately, Yes. Its us who make the rules and also break the rules. There have been petitions, for poaching of tigers, hunting seals, skinning domestic animals and what not. But none of them has made a noticeable impact. And … | |
Re: When the user clicks on Edit button, pass that user's id in a hidden variable, query the table, fetch the record and print respective values in the textboxes. Is there any particular error ? | |
Re: :) Good job! Nicely done.. Edit: Even the sliding navigation is good ! | |
Re: Why do you want to redirect after querying the table ? Why not query the table after "implicitly redirecting" to another page using form method="post" ? | |
Re: Hey ! Welcome to Daniweb ! You can create a thread [url=http://www.daniweb.com/forums/forum55.html] here [/url] to get the feedback of your site ! :) | |
Re: Its pretty easy. In page 1, say, you are listing all the houses with hyperlinks. Eg. [code=php] $query="select id from houses"; $result=mysql_query($query); while($row=mysql_fetch_array($result)){ echo "<a href=houseinfo.php?id=".$row['id']; } [/code] In houseinfo.php, you just have to get the id from the url, fetch its information from the table and print it. [code=php] … | |
Re: Search for pagination. You can make use of 'limit' to display only 8 records at a time. | |
Re: To "talk" to the database, you need a server side scripting language like php, asp, asp.net etc. How do you want to save the phone numbers ? When a user searches for a phone number, how do you want to retrieve it ? What are the required fields (eg., name, … | |
Re: Do you have a function called fe ? If yes, is it in a different file ? If no, what does [quote]if(fe($_REQUEST[act]))[/quote] mean ? | |
Re: [quote] Mr Beatie, who became a man about 10-years ago, is said to be the first technically pregnant male, with Doctors on Oprah last night confirming the pregnancy. The pregnant man became an internet hit when he was featured on a website covering his alleged pregnancy. [b]While many doubted the … | |
Re: Welcome to Daniweb ! Please post your question in hardware forum ! | |
Re: Welcome to Daniweb ! Please read the guidelines before posting ! And post your question in VB.net forum. :) | |
Re: If you google for javascript date picker, you will get many ! Eg. this one [url=http://www.nsftools.com/tips/DatePickerTest.htm] here [/url] | |
Re: 2 tables at the same time, possible. 2 different databases at the same time, not possible. You have to open one database first, then the second one. Edit: It might be possible ! Check the post by "buzz at oska dot com" here. [url]http://nl2.php.net/mysql_select_db[/url] | |
Re: What is the scenario like ? You insert a record to form table and then insert one/many records to register table ? If thats the case, then, blater's code should work. You can also try this. [code=php] $insert_to_form = "insert into form (col1, col2) values ('1','2')"; mysql_query($insert_to_form); //since form has … | |
Re: You SHOULDN'T echo anything before header and setcookie functions. Edit: Not even a whitespace. | |
Re: You can't have an echo, print or any html tag before session_start and header functions. You cannot even have a whitespace. | |
Re: There is a typo in ENCTYPE. It should be form-data. | |
Re: You just have to check if $_POST['selectboxvalue'] is equal to the value of the option. If it is equal, echo selected, else echo nothing.. | |
Re: Check [url=http://www.w3schools.com/php/php_file_upload.asp] this [/url], [url=http://nl.php.net/features.file-upload] this [/url] or [url=http://www.tizag.com/phpT/fileupload.php] this [/url]. | |
Re: [QUOTE=hammerhead;582315]I disagree with #3, free T shirts are great :D[/QUOTE] To wear at home, ofcourse ;) | |
The End.