- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
21 Posted Topics
this is my code for inserting records into my form which is in html file `Inline Code Example Here` <?php error_reporting(E_ALL ^ E_DEPRECATED); $connect=mysql_connect("localhost","root","") or die(mysql_error()); $db_select=mysql_select_db("employee",$connect) or die(mysql_error()); if (isset($_POST['id'])) $id=$_POST['id']; if (isset($_POST['name'])) $name=$_POST['name']; if (isset($_POST['gender'])) $gender=$_POST['gender']; if (isset($_POST['mobile'])) $mobile=$_POST['mobile']; if (isset($_POST['email'])) $email=$_POST['email']; $qry="insert into emp(id,name,gender,mobile,email) values ('$id','$name','$gender',$mobile,'$email')"; $result=mysql_query($qry) …
hi i want to get character like 'a','c','b' etc as input from user and before geting the character first i need to get how many character should be entered if it is 5 then i will get 5 times input as character from user.and i want to asign some value …
hi can you plz explain wic is best fot devrloping websites or web application Php,.net or using xml xquery
hi i need to search a particular record where the user will enter the name or id . this is my html form <html> <fieldset style=text-align:left> <form name="empdetails" id="empdetails" action="view.php"> ID : <input type="text" id="id" name="id" ><br> <input type="submit" id="submit" name="view" value="view" ><br> </form> </body> </html> my php file : …
hi i want to generate text boxes dynamically . when i run the program i will get input in integer in a text box with that input (ex input=5) then 5 text box should be generated in my page how to do it .
hi i want to insert date through mysql query <?php require_once('auth.php'); require_once('connection/config.php'); //Connect to mysql server $link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD); if(!$link) { die('Failed to connect to server: ' . mysql_error()); } //Select database $db = mysql_select_db(DB_DATABASE); if(!$db) { die("Unable to select database"); } ?> <form method ="post" action =""> …
` <script type="text/javascript"> $(function() { $( "#date" ).datepicker({ minDate: 0, maxDate: " +10D" , dateFormat:'yy-mm-dd' }); }); </script> <input type="text" name="date" id="date"></td></tr> I think this will help you just download the juery ui `
hi i have used datepicker for picking date and i need to validate for empty value .i should not allow the user to go to next page without selecting any dates how to do that ..
hi i have a select(dropdown button) which displays various chioce for the user to select .. i want to validate it that if the user does not select any choice i should not able to do any action how to do. Is there any like required available for text box …
hi i am working in a project it is about online ordering of food .. I have problem in createing the cart. I have these tables Member-will have the username and password, member id. Fooddetails- will have foodid,foodname,fooddescrtion,foodimage,price. Cartdetails-cart id ,quantity ,price,total,member id, Orderdetails-order id,total,member id. cart details has the …
hi im a student and im doing a project for university exam my project include online payment .i there any payment gateway for only testing purpose .
Hi I'm developing a table reservation system for restaurant.how to resolve if two person reserves table at same time and same table .
Hi I have worked in visual studio ther report creation is simple and how to generate the report in PHP .
how to set the minvalue=today and max value=today+30 in javascript or how to do it in jquery what are the files i need to download .plz explain me i never used jquery before .
how to use datepicker jquery what are the essentials think i should download to use datepicker
hi im doing a project on online table reseration. im using a table "reservation" to store the table details of reserved table +--------------+-------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +--------------+-------------+------+-----+---------+----------------+ | reserve_id | int(15) | NO | PRI | NULL | auto_increment | …
hi i need some clarification that can we write code for textbox change event or other events for form input in php without the help of javascript or jquery..
hi im doing a project on online booking ..if the user enter the date i need to check weather the date and time is available to book.
how to insert data into database by using onchange event .
hi im using to table members and orderitems,food_details members table has the following fields memebr_id membername food_details has the following fields food_id price orderitems has fiels such as order_id member_id food_id quantity price total. I need to insert member_id,food_id,foo_price from tables members,food_details into order_items table .how to achieve ?
The End.
hiiiiii@