No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
15 Posted Topics
Hi, Is there a function that will express any given number in words. For example: if number is 1432 then this function should echo "One thousand four hundred thirty two". Thanks ![]() | |
I am using Windows 7 home premium. I am not able to enter the password to login. But the space key and the back key are working fine. Even the touch pad is working fine. Please help Thanks | |
Hi, Is it possible to redirect users to a page when they click on back button of the browser? If yes then how can I achieve it? Thanks | |
Hi, I want to know how to search the inputs provided by the user in the form of checkboxes in a mysql database. <form> <input type="checkbox" name="interests" value="Food"> <input type="checkbox" name="interests" value="Movie"> <input type="checkbox" name="interests" value="Music"> <input type="checkbox" name="interests" value="Sports"> <input type="checkbox" name="interests" value="Reading"> </form> I have other input elements … | |
Hi, I have a form with various elements such as ids, location. I need to pass these values to a php file through a javascript function. Right now I am able to pass only ids. The Form <form action="display.php"> <label>Your ID</label> <input type="text" id="ids" name="ids" value=""> <label>Location</label> <select name="location" id="location"> … | |
Hi, I am using IN array with my where clause in mysql query. My query goes like this :- $sql = mysql_query("SELECT * FROM table1 where id IN ('$id_array')"); The problem is when I echo the query, I see 'Array' in the query instead of the id's. Please help | |
Hi, Does anyone know of good tutorials for neat horizontal forms. All major tutorials are for vertical forms. I need a horizontal form spanning across more than one line. Thanks | |
Hi, For some reason form submit is not working properly while I am using Ajax. I want the result to be displayed on the same page. I am using Ajax for this, but when I submit the form, only text is being displayed rather than the actual value. This is … | |
Hi, For some reason form submit is not working properly while I am using Ajax. I want the result to be displayed on the same page. I am using Ajax for this, but when I submit the form, only text is being displayed rather than the actual value. This is … | |
Hi, For some reason form submit is not working properly while I am using Ajax. I want the result to be displayed on the same page. I am using Ajax for this, but when I submit the form, only text is being displayed rather than the actual value. This is … | |
Hi I am working with ajax. `<form action="javascript:ajaxpage('files/search2.php', 'columnTwo')" method="POST"> Email :<input type="text" name="email" value=""/> <button>Submit </form>` The problem is search2.php does not work properly. It echo's the statements "The Email ID is :" but is not able to echo the value i.e $email search2.php `<?php $email = $_POST['email']; echo … | |
Hi, This is the third time I joined Daniweb. I cannot login to the site once I logout. It says that there is a mismatch in username or password. I checked it couple of times and same problem occurs. | |
Re: <?php $host="localhost"; // Host name $username="admin"; // Mysql username $password="your password"; // Mysql password $db_name="db1"; // Database name $tbl_name="table1"; // Table name // Connect to server and select databse. mysql_connect("$host", "$username", "$password")or die("cannot connect"); mysql_select_db("$db_name")or die("cannot select DB"); $username1 = $_POST['username']; $password1 = $_POST['password']; $newuserpassword1 = $_POST['newuserpassword']; $renewuserpassword1 = $_POST['renewuserpassword']; … | |
Hi, How to pass an array to a form which is above the part where the array is created I have a php script with html in it. The page is divided into blocks using div tags. There is a form in a div tag which is at the top … | |
Hi, I am designing a system wherein a student can search projects based on technology, project type, location etc etc. The search form goes like this :- Project Type - HTML Select Option - Example:- Automobile, Manufacturing, Marketing, Communication Technology - Text Input Type - Example:- HTML, CSS, Java Starting … |
The End.