
laxi
Members-
Posts
49 -
Joined
-
Last visited
Everything posted by laxi
-
Hi ginerjm Please find my script below. It still displays linear..
-
I made changes you sugested but it still gives me a linear display.Not sure why..
-
Hi, I tried this code but now it displays only 1 product, ie 1 row and 1 coloumn.No other products are displayed.
-
No luck yet...can somebody help me figure this out?
-
Hello people, I need to get the items displayed dynamically from Mysql database in a 5x3 grid on my webpage. I have managed to put together a dynamic table from Mysql DB. However, I am not able to display the items in a grid format. The output is diplayed linearly on the webpage. Can someone tell me what I need to correct on my script to get them displayed as a grid instead of the linear display. FYI, $dynamicList is a table that puts together product details and $dyn_table is the grid table. <?php // Connect to the MySQL database include "storescripts/connect_to_mysql.php"; // This block grabs the whole list for viewing $i=0; $sql = mysql_query("SELECT * FROM products ORDER BY date_added DESC"); $productCount = mysql_num_rows($sql); // count the output amount if ($productCount > 0) { $dyn_table = '<table border="0" cellpadding="4">'; while($row = mysql_fetch_array($sql)){ $id=$row["id"]; $product_name=$row["product_name"]; $price=$row["price"]; $category=$row["category"]; $first_subcategory=$row["first_subcategory"]; $second_subcategory=$row["second_subcategory"]; $date_added=$row["date_added"]; $dynamicList .= ' <table width="20%" border="1" cellspacing="0" cellpadding="4"> <tr> <td><a href="product.php?id='.$id.'"><img src="inventory_images/'.$id.'.jpg" width="243" border="1" height="240" alt="$dynamicTitle" /></a></td> </tr> <tr> <td> ' .$product_name . '</br> <hr> $ ' .$price . '</br> <hr> <a href="product.php?id='.$id.'">View Product Details</a></td> </tr> </table>'; if ($i % 3==0){ $dyn_table .='<tr><td>' . $dynamicList .'</td>'; }else { $dyn_table .='<td>' . $dynamicList .'</td>';} $i++; } $dyn_table .='</tr></table>'; } else { $dynamicList = "We have no products listed in our store yet"; } mysql_close(); ?> Thank you in advance
-
Hello members, can someone explain to me the syntax shown below? This is a OOP extract. I am confused in \""." for class. What is the role of "\" in the highlighted code. $this->spannextinactive = "<span class=\""."$this->inactivespanname\">$this->strnext</span>\n"; Please explain. Thanks in advance
-
btw also let me knw how to insert codes in this forum..
-
if($_SERVER['REQUEST_METHOD'] == 'POST') { // check if no errors if(isset($_FILES['file']['error']) && $_FILES['file']['error'] == 0) { //... process upload here ... } else { echo "Error" . $_FILES["file"]["error"]; } } else { echo 'file size too large.Please reduce file size'};
-
Hi, Your code is amazingly simple and crisp except that I could not understand one small segment of it. ie, if(isset($_POST['submit']) && is_array($_FILES)) what is the purpse behind checking the if on [is_array($_FILES)].Please clarify. As far as my understanding about $_FILES goes it is always an associative array? curious to know on this. Thanks again..
-
Hi can someone tell me why I am not thrown any errors if i upload a file bigger than file size specified in the code. Also it does not throw error if i upload some other extensions instead of images. if i upload an other file extension instead of images it hangs and any image file which is larger than specified size uploads and does not throw errors. Please clarify. $allowedext= array("png", "jpeg", "jpg", "gif"); $ext = explode(".", $_FILES_["file"]["name"]); $extention=end($ext); if(( $_FILES["file"]["type"]=="image/png")||($_FILES["file"]["type"]=="image/jpeg")||($_FILES["file"]["type"]== "image/jpg" )||($_FILES["file"]["type"]=="image/gif")&& ($_FILES["file"]["size"]< 2)&& (in_aray($extention,$allowedex))) { if (( $_FILES["file"]["error"]>0)) {echo "Error".$_FILES["file"]["error"]." "; } else{ move_uploaded_file(($_FILES["file"]["tmp_name"]),"upload/".$_FILES['file']['name']); echo "Your upload was successful"; } } ?>
-
Hello , can some one breakdown and explain the below syntax $sql = "INSERT INTO tutorials_tbl ". "(tutorial_title,tutorial_author, submission_date) ". "VALUES ". "('$tutorial_title','$tutorial_author','$submission_date')"; $sql = "CREATE TABLE tutorials_tbl( ". "tutorial_id INT NOT NULL AUTO_INCREMENT, ". "tutorial_title VARCHAR(100) NOT NULL, ". "tutorial_author VARCHAR(40) NOT NULL, ". "submission_date DATE, ". "PRIMARY KEY ( tutorial_id )); "; the . and " are confusing..
-
Hi everyone, I am trying to insert multiple data into my mysql database table with the below syntax. however it only inserts the first row of data and returns a syntax error. Not sure what i am doing wrong...Please advice ------------------------------------------- INSERT INTO three_drops ( id, tier_one,tier_two, tier_three) VALUES (4, 'CLOTHING', 'MEN', 'Jeans'); (5, 'CLOTHING', 'MEN', 'Cargos'); (6, 'CLOTHING', 'MEN', 'Shorts & 3/4ths'); (7, 'CLOTHING', 'MEN', 'Trousers'); ------------------------------------------------- it inserts only 4th item and returns an error for the remaing items Error SQL query: ( 5, 'CLOTHING', 'MEN', 'Cargos' ) ; MySQL said: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '5, 'CLOTHING', 'MEN', 'Cargos')' at line 1 Viewing: Dev Shed Forums > Databases >
-
triple select list box generator for form not working
laxi replied to laxi's topic in PHP Coding Help
http://www.allplaybig.com/ Please check my issue @ http://www.allplaybig.com/ -
Hello everyone, I have been having trouble in getting 3 dynamic select list boxes in my form to work properly(without page refresh). I finally found a Jquery double or triple dropdown list generator @ http://dailyphp.blogspot.com/ It works to an extend but i think the first select list box is not connected to the 3 list box. They are not in sync. Can some one take a look at my code and help me get all my list boxes to sync. Also, I want to add the (text) "category" , "first-subcategory", "second-subcategory" in front of the respective list box when displayed at the front end and I wanted the selected items values to be captured from these list boxes and passed to an other variable "categories","first-subcategories","second-subcategories"(all plurals) respectively so that the I could parse the form to a php script on submit and capture all user inputs into my database table. Thanks in advance :-) index.php select.php jquery.txt
-
Form issue (unable to pass select box value from 1 form to another)
laxi replied to laxi's topic in Javascript Help
What i need is to get values of the 3 dropdowns from the first form to be passed to the second form. The first form has no submit button. Both the forms are on the same page, and only the second form has the submit button which used the values of the 1st form dropdown to then parse to a php script. I think we need some javascript to collect values from 1st forms select boxes and pass them to second form. Not sure how to proceed.. -
Form issue (unable to pass select box value from 1 form to another)
laxi replied to laxi's topic in Javascript Help
Thank you for the quick response. I have both the forms in 1 webpage. The dropdown box values from the first form will need to be passed to the second form which has a submit button to parse to a php script. The first form does not have a submit button.Only the values needs to be passed from 1st form to second form in the same page. -
Hello everyone, In my webpage i have 2 forms. 1 form has 3 select dropdown boxes and the other one is the main form which parses to a php script. I would want the values of my 1st form dropdown select boxes to be passed into a hidden input field in the second form so that I can parse those to mysql database. I am having difficulties passing the value of my 3 dropdown list in 1st form to the main form. Please help and thanks in advance. below are my 2 forms 3 dropdown select form---> <form action="" method="get" name="tripleplay"><table width="65%" border="1"> <tr> <td width="25%" align="right">Category </td> <td width="75%"><select name='List1' id="catg1" onchange="fillSelect(this.value,this.form['List2'])"> <option selected="selected">Make a selection</option> </select></td> </tr> <tr> <td align="right">First-Subcategory </td> <td><select name='List2' id="catg2" onchange="fillSelect(this.value,this.form['List3'])"> <option selected="selected">Make a selection</option> </select></td> </tr> <tr> <td align="right">Second-Subcategory </td> <td><select name='List3' id="catg3" onchange="getValue(this.value, this.form['List2'].value, this.form['List1'].value)"> <option selected="selected" >Make a selection</option> </select></td> </tr> </table></form> ++++++++++++++++++++++++++++++++++++++++ Main Form---> <form action="inventory_list.php" method="post" enctype="multipart/form-data" name="myForm"><table width="65%" border="1"> <tr> <td align="right" width="25%">Product Name </td> <td width="75%"><input name="product_name" type="text" id="product_name"/></td> </tr> <tr> <td align="right">Price </td> <td> $ <input name="price" type="text" id="price"/></td> </tr> <tr> <td align="right">Details </td> <td><textarea name="details" cols="55" rows="10"> </textarea></td> </tr> <tr> <td align="right">Upload Product Image </td> <td> <input name="imagefile" type="file" /></td> </tr> <tr> <td> </td> <td><input name="submit" type="submit" value="submit" /> <input name="reset" type="reset" value="reset" /> <input name="category" type="hidden" value="cat1"/> <input name="first_subcategory" type="hidden" value="cat2" /> <input name="second_subcategory" type="hidden" value="cat3"/> </td> </tr> </table></form> Again Thanks in advance
-
Hello everyone, I am building up a site and I have a form that is kind off tricky. I have 3 depenendable select boxes in my form for category,first-subcategory,second-subcategory that been written in using javascript. But the form itself has other elements that needs to be parsed to a php scripts. The 3 dependable select boxes has no action attribute, ie action=" " for it to work according to the written javascript and I have copied this script from a forum help section. I had to integrate this 3 dependable select boxes into my original form which parses to a action="inventory.php" script. When I integrate the 3 dependable boxes into my form that parses to action="inventory.php" the dependable boxes dont work for first-subcategory,second-subcategory as the javascript requires action=" " and not action="inventory.php". However i need the form to be parsed to the "inventory.php" script. below is my code..Can somebody advise and make this work for me.. <?php session_start(); if (!isset($_SESSION["manager"])){ header("location:admin_login.php"); exit(); } ?> <?php /* checking if this is a valid session in database */ $managerID=preg_replace('#[^0-9]#','',$_SESSION["id"]); $username=preg_replace('#[^0-9a-z]#i','',$_SESSION["manager"]); $password=preg_replace('#[^0-9a-z]#i','',$_SESSION["password"]); include "../storescripts/connect_to_mysql.php"; /* connect to database */ /* do a query on database */ $sql=mysql_query("SELECT * FROM admin WHERE id='$managerID' AND username='$username' AND password='$password'"); $row=mysql_num_rows($sql);/* counting the number of rows returned from above query */ if($row==0) { echo "You are not authorised to enter this region as your credentials are not valid on our database"; exit(); } ?> <?php /* list all the products for viewing*/ $product_list=""; $sql=mysql_query("SELECT * FROM products"); $count=mysql_num_rows($sql); if ($count>0) { while($row = mysql_fetch_array($sql)){ $id=$row["id"]; $product_name=$row["product_name"]; $price=$row["price"]; $List1=$row["List1"]; $List2=$row["List2"]; $List3=$row["List3"]; $date_added=$row["date_added"]; $product_list .= "$id- $product_name- $price- $List1- $List2- $List3-$date_added <a href='#'>edit</a> •<a href='#'>delete</a> <br>"; } } else { $product_list = "You dont have any products listed in your store yet"; } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Manage Inventory</title> <link rel="stylesheet" href="../style/style.css" type="text/css" media="screen"/> <script type="text/javascript"> /* Triple Combo Script Credit By Philip M: http://www.codingforums.com/member.php?u=186 Visit http://javascriptkit.com for this and over 400+ other scripts */ var categories = []; categories["startList"] = ["CLOTHING","ELECTRONICS","AUTOMOBILES"] categories["CLOTHING"] = ["MEN","WOMEN","KIDS", "FEATURED STORES CLOTHING","OFFERS CLOTHING"]; categories["ELECTRONICS"] = ["CAR/AUTO ELECTRONICS & GPS","CAMERA AND PHOTO","CELL PHONES AND ACCESSORIES","MP3 PLAYERS AND ACCESSORIES","TV,HOME THEATRE,AUDIO/VIDEO","MUSICAL INSTRUMENTS AND ACCESSORIES","VIDEO GAMES"]; categories["AUTOMOBILES"] = ["CAR","MOTORCYCLE"]; categories["MEN"] = ["T-shirts","Casual & Party Wear Shirts","Formal Shirts","Jeans","Cargos, Shorts & 3/4ths","Trousers","Inner & Sleep Wear","Rainwear","Sports Wear","Accessories & Combo Sets","Suits & Blazers","BRANDS MEN"]; categories["WOMEN"] = ["Dresses & Skirts","Ethnic Wear","Shirts, Tops & Tunics","Polos & T-shirts","Jeans & Shorts", "Leggings & Jeggings","Trousers & Capris","Lingerie & Sleepwear","Accessories","BRANDS WOMEN"]; categories["KIDS"] = ["BOYS","GIRLS","INFANTS"]; categories["FEATURED STORES"] = ["For Men", "For Women", "For Kids"]; categories["OFFERS"] = ["Featured Deals", "SALE"]; categories["CAR/AUTO ELECTRONICS & GPS"] = ["Car Audio","Car Stereo", "Car Speakers", "Car Amplifiers","Car Subwoofers","Car Video", "Satellite Radio", "CB Radio","OTHER Car Audio & Video ","Alarm Systems", "Key-less entry", "Remote Starters", "Vehicle Back-Up Cameras","Steering Wheel Locking ","Radar Detectors", "OTHER Car Safety & Security", "Vehicle GPS" ,"GPS Mapping Software", "GPS Trackers", "GPS Systems Accessories", "Sport & Handheld GPS", "Boating GPS","OTHER GPS & Navigation",]; categories["CAMERA AND PHOTO"] = ["Digital SLR","Point & Shoot","Advanced Point & Shoot", "Camcorder", "Mirrorless ","Brands", "SLR ACCESSORIES", "Lenses by brands", "Lens Cleaners","Lens Caps ","Filters", "Flashes", "Memory Cards" , "Tripods", "Camera Bags", "Binoculars & Optics", "Digital Photoframes", "FEATURED STORES","OFFERS"]; categories["CELL PHONES AND ACCESSORIES"] = ["Brand cell phones","Samsung","Micromax", "Nokia", "Sony ","HTC", "Apple", "BlackBerry", "FEATURED STORES CELL PHONES AND ACCESSORIES","OFFERS CELL PHONES AND ACCESSORIES ","SERVICES"]; categories["MP3 PLAYERS AND ACCESSORIES"] = ["Under 1GB","1 to 4 GB","5 to 24 GB", "25 to 60 GB","61 to 120 GB", "Over 120 GB","ipod", "MP3 PLAYERS","SPEAKER SYSTEMS","MP3 ACCESSORIES","HEADPHONES", "CASES"]; categories["TV,HOME THEATRE,AUDIO/VIDEO"] = ["Home Theater Systems","Compact & Portable Audio","Speakers", "Home Audio Accessories","Headphones", "HDTVs","Blu-ray Players and Projectors", "OTHER HOME THEATER EQPMTS "]; categories["MUSICAL INSTRUMENTS AND ACCESSORIES"] = ["Guitars","Bass Guitars","Drums & Percussion", "Keyboards", "Band & Orchestra","Folk & World Instruments","Instrument Accessories", "Studio Recording Equipment ","Top Deals"]; categories["VIDEO GAMES"] = ["PlayStation 4","PlayStation 3", "Xbox One", "Xbox 360","Sony PSP","Mac","Sony PSP", "Digital Games", "Best-Selling Video Games","OTHER GAMES AND ACCESSORIES", ]; categories["CAR"] = ["MAKE","NEW","USED", "OTHERS"]; categories["MOTORCYCLE"] = ["Ducati","BMW", "Shop by Type"] var nLists = 3; // number of select lists in the set function fillSelect(currCat,currList){ var step = Number(currList.name.replace(/\D/g,"")); for (i=step; i<nLists+1; i++) { document.forms['tripleplay']['List'+i].length = 1; document.forms['tripleplay']['List'+i].selectedIndex = 0; } var nCat = categories[currCat]; for (each in nCat) { var nOption = document.createElement('option'); var nData = document.createTextNode(nCat[each]); nOption.setAttribute('value',nCat[each]); nOption.appendChild(nData); currList.appendChild(nOption); } } function init() { fillSelect('startList',document.forms['tripleplay']['List1']) } navigator.appName == "Microsoft Internet Explorer" ? attachEvent('onload', init, false) : addEventListener('load', init, false); </script> </head> <body style="margin: 0px; padding: 0px; height: 100%; text-align: center; > <div align="center" id= "mainWrapper" margin-left= 0px;> <?php include_once("../template_header.php");?> <div id= "pageContent"> <h1 align="center"> Manage Inventory</h1> <div align= "right" style=" margin: 50px" ><a href="inventory_list.php#inventoryForm">+Click here to add inventory to the store </a></div> <p><?php echo $product_list; ?></p> <a name="inventoryForm" id="inventoryForm"></a> <h2 align="center"> Add Inventory Items to the store</h2> <form action="" method="post" enctype="multipart/form-data" name="tripleplay"><table width="87%" border="1"> <tr> <td align="right" width="29%">Product Name </td> <td width="43%"><input name="product_name" type="text" id="product_name"/></td> <td width="28%"><label id="product_name" > </label></td> </tr> <tr> <td align="right">Price </td> <td> $ <input name="price" type="text" id="price"/></td> <td><label id="price"> </label></td> </tr> <tr> <td align="right">Category </td> <td><select name='List1' onchange="fillSelect(this.value,this.form['List2'])"> <option selected>Make a selection</option> </select></td> <td><label id="category"> </label></td> </tr> <tr> <td align="right">First-Subcategory </td> <td> <select name='List2' onchange="fillSelect(this.value,this.form['List3'])"> <option selected>Make a selection</option> </select></td> <td><label id="first-subcategory"> </label></td> </tr> <tr> <td align="right">Second-Subcategory </td> <td><select name='List3' onchange="getValue(this.value, this.form['List2'].value, this.form['List1'].value)"> <option selected >Make a selection</option> </select></td> <td><label id="second-subcategory"> </label></td> </tr> <tr> <td align="right">Details </td> <td><textarea name="details" cols="55" rows="10"> </textarea></td> <td><label id="details"> </label></td> </tr> <tr> <td align="right">Upload Product Image </td> <td> <input name="imagefile" type="file" /></td> <td><label id="imagefile"> </label></td> </tr> <tr> <td> </td> <td><input name="submit" type="submit" value="submit" /> <input name="reset" type="reset" value="reset" /></td> <td> </td> </tr> </table></form> <p> </p> <p> </p> </div> <?php include_once("../template_footer.php");?> </div> <p> </p> </body> </html> Thanks in advance
-
I am new to php...and since i am using tables i am not sure how to get the select boxes to display in the table. if you look at my form table the category,first_subcategory,and second_subcategory section is not written properly.need to link the php code to get the select boxes to display. As of now it just displays only the categories section dropdown as in the html code.The other 2 dropdowns are not populating. Thanks again for looking into this one for me.
-
hi, thank you for your quick response, however I am still not clear on the solution.I use table for my form... my html is below and products table screenshot also attached - Please let me know how i can get my dropdown for category ,fist subcategory and second category to work <?php session_start(); if (!isset($_SESSION["manager"])){ header("location:admin_login.php"); exit(); } ?> <?php /* checking if this is a valid session in database */ $managerID=preg_replace('#[^0-9]#','',$_SESSION["id"]); $username=preg_replace('#[^0-9a-z]#i','',$_SESSION["manager"]); $password=preg_replace('#[^0-9a-z]#i','',$_SESSION["password"]); include "../storescripts/connect_to_mysql.php"; /* connect to database */ /* do a query on database */ $sql=mysql_query("SELECT * FROM admin WHERE id='$managerID' AND username='$username' AND password='$password'"); $row=mysql_num_rows($sql);/* counting the number of rows returned from above query */ if($row==0) { echo "You are not authorised to enter this region as your credentials are not valid on our database"; exit(); } ?> <?php /* list all the products for viewing*/ $product_list=""; $sql=mysql_query("SELECT * FROM products"); $count=mysql_num_rows($sql); if ($count>0) { while($row = mysql_fetch_array($sql)){ $id=$row["id"]; $product_name=$row["product_name"]; $price=$row["price"]; $category=$row["category"]; $first_subcategory=$row["first_subcategory"]; $second_subcategory=$row["second_subcategory"]; $date_added=$row["date_added"]; $product_list .= "$id- $product_name- $price- $category- $first_subcategory- second_subcategory- $date_added <a href='#'>edit</a> •<a href='#'>delete</a> <br>"; } } else { $product_list = "You dont have any products listed in your store yet"; } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Manage Inventory</title> <link rel="stylesheet" href="../style/style.css" type="text/css" media="screen"/> </head> <body > <SCRIPT language=JavaScript> function reload(form) { var val=form.category.options[form.category.options.selectedIndex].value; self.location='addrequest.php?category=' + val ; } function reloadtwo(form) { var val=form.category.options[form.category.options.selectedIndex].value; var val1=form.first_subcategory.options[form.first_subcategory.options.selectedIndex].value; self.location='addrequest.php?category=' + val + '&first_subcategory=' + val1 ; } </script> <?php @$category = $_GET['category']; @$first_subcategory = $_GET['first_subcategory']; if(strlen($category) > 0 and is_numeric($category)) { echo "Query Error"; exit; } elseif(strlen($first_subcategory) > 0 and is_numeric($first_subcategory)) { echo "Query Error"; exit; } $quer2 = mysql_query("SELECT DISTINCT category FROM products"); if(isset($category) and strlen($category) > 0) { $quer = mysql_query("SELECT DISTINCT first_subcategory, category FROM products WHERE category = '$category'"); } $quer3 = mysql_query("SELECT DISTINCT first_subcategory, category FROM products WHERE category = '$category'"); if(isset($first_subcategory) and strlen($first_subcategory) > 0) { $quer33 = mysql_query("SELECT DISTINCT second_subcategory,first_subcategory,category FROM products WHERE category = '$category' and first_subcategory = '$first_subcategory'"); } ?> ........................ <div id= "pageContent"> <h1 align="center"> Manage Inventory</h1> <div align= "right" style=" margin: 50px" ><a href="inventory_list.php#inventoryForm">+Click here to add inventory to the store </a></div> <p><?php echo $product_list; ?></p> <a name="inventoryForm" id="inventoryForm"></a> <h2 align="center"> Add Inventory Items to the store</h2> <form action="inventory_list.php" method="post" enctype="multipart/form-data" name="myForm"><table width="87%" border="1"> <tr> <td align="right" width="29%">Product Name </td> <td width="43%"><input name="product_name" type="text" id="product_name"/></td> <td width="28%"><label id="product_name" > </label></td> </tr> <tr> <td align="right">Price </td> <td> $ <input name="price" type="text" id="price"/></td> <td><label id="price"> </label></td> </tr> <tr> <td align="right">Category </td> <td><select name="category" id="category"> <option value=""></option> <option value="Clothing">Clothing</option> <option value="Electronics">Electronics</option> <option value="Automobiles">Automobiles</option> </select></td> <td><label id="category"> </label></td> </tr> <tr> <td align="right">Subcategory </td> <td> <input name="first_subcategory" type="text" id="subcategory"/></td> <td><label id="subcategory"> </label></td> </tr> <tr> <td align="right">Second Subcategory </td> <td> <input name="second_subcategory" type="text" id="second_subcategory"/></td> <td><label id="second_subcategory"> </label></td> </tr> <tr> <td align="right">Details </td> <td><textarea name="details" cols="55" rows="10"> </textarea></td> <td><label id="details"> </label></td> </tr> <tr> <td align="right">Upload Product Image </td> <td> <input name="imagefile" type="file" /></td> <td><label id="imagefile"> </label></td> </tr> <tr> <td> </td> <td><input name="submit" type="submit" value="submit" /> <input name="reset" type="reset" value="reset" /></td> <td> </td> </tr> </table></form> <p> </p> <p> </p> </body> </html>
-
I need a code that can help me to create 3 dependable dropdown selects form from a "products" table in mysql database. Please see attached screenshot for my "products" table. I need a dependabe dropdown select box for my form ie-- if a "category" item is selected the corresponding "1st_subcategory" appears and based on "1st_subcategory" selected the "2nd_subcategory" items appears. Not sure how to approach this. I have been struggling with this for 3-4 days. Please help. Thanks in advance
-
Hi, I am pretty new to PHP and i am currently working on a website. I am having an issue with contact Us form on my webpage. It is always displaying a message when you open the contact form: "Your email has been sent to our web team. Please allow a 24 hour response time". Also, when the wrong security answer is typed and the form is submitted it does not echo the failure message as programmed.Can someone check the code for me. The site is http://allplaybig.com I have 2 php pages for the contact form. 1) contact.php 2) phpcontact.php the relevent php codes are listed below for both pages: a) contact.php +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++= <?php $s=$_GET['s']; if($s="1") {echo('<span class="success">Your email has been sent to our web team. Please allow a 24 hour response time </span>');} else if($s="2") {echo('<span class="fail">Sorry ! Your message has not been sent to our web team. Please fill the form correctly and try again </span>');} ?> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ phpcontact.php <?php $firstname=$_POST['firstname']; $lastname=$_POST['lastname']; $email=$_POST['email']; $tel=$_POST['tel']; $security=$_POST['security']; $enquiry=$_POST['message1']; $to= "laxmon@allplaybig.com"; $subject= "New message from allplaybig.com visitor"; $message="A visitor of allplaybig.com has submitted the contact us form with the below details\n\n First name:$firstname\n\n Last name:$lastname \n\n Email:$email \n\n Telephone: $tel\n\n Customer says- $enquiry"; if($security=="6"){ mail($to,$subject,$message); header("location:contact.php?s=1"); }else{ header("location:contact.php?s=2"); } ?>
-
hi I am new to php. Can someone break the below 2 regular expression and tell me what this will acheive? $managerID = preg_replace('#[^0-9]#i', '', $_SESSION["id"]); $manager = preg_replace('#[^A-Za-z0-9]#i', '', $_SESSION["manager"]); Also wanted to know what does # do?