Jump to content

bravo14

Members
  • Posts

    296
  • Joined

  • Last visited

Everything posted by bravo14

  1. Hi Have checked that and the offending line (28) is below $photos_uploaded = $_FILES['photo_filename'];
  2. Hi guys I am getting an error of Notice: Undefined index: photo_filename in /home/sites/haldonguesthouse.co.uk/public_html/new-site/admin/upload.php on line 28 I understand that the error would suggest that the field is not referenced on the form that is used to post the values through. Below is the form code that is used to post the values <form id="add_gallery" action="upload.php" method="post"> <table> <tr> <td>Gallery Name</td> <td><select name="category" id="category"> <option>Please select...</option> <option value="14">Superior Double Room</option><option value="15">Superior Single Room</option><option value="16">Double en-suite</option><option value="17">Twin or Triple Room, en suite</option><option value="18">Family Room for 4</option><option value="19">Single Room with Private Facilities</option><option value="20">Double Room with Private Facilities</option><option value="21">The Gallery</option></select></td> </tr> <tr> <td> Photo 1: <input name='photo_filename[]' type='file' /> </td> </tr> <tr> <td> Title: <input name='photo_caption[]' type="text" size="30"> </td> </tr><tr> <td> Photo 2: <input name='photo_filename[]' type='file' /> </td> </tr> <tr> <td> Title: <input name='photo_caption[]' type="text" size="30"> </td> </tr><tr> <td> Photo 3: <input name='photo_filename[]' type='file' /> </td> </tr> <tr> <td> Title: <input name='photo_caption[]' type="text" size="30"> </td> </tr><tr> <td> Photo 4: <input name='photo_filename[]' type='file' /> </td> </tr> <tr> <td> Title: <input name='photo_caption[]' type="text" size="30"> </td> </tr><tr> <td> Photo 5: <input name='photo_filename[]' type='file' /> </td> </tr> <tr> <td> Title: <input name='photo_caption[]' type="text" size="30"> </td> </tr><tr> <td> Photo 6: <input name='photo_filename[]' type='file' /> </td> </tr> <tr> <td> Title: <input name='photo_caption[]' type="text" size="30"> </td> </tr><tr> <td> Photo 7: <input name='photo_filename[]' type='file' /> </td> </tr> <tr> <td> Title: <input name='photo_caption[]' type="text" size="30"> </td> </tr><tr> <td> Photo 8: <input name='photo_filename[]' type='file' /> </td> </tr> <tr> <td> Title: <input name='photo_caption[]' type="text" size="30"> </td> </tr><tr> <td> Photo 9: <input name='photo_filename[]' type='file' /> </td> </tr> <tr> <td> Title: <input name='photo_caption[]' type="text" size="30"> </td> </tr><tr> <td> Photo 10: <input name='photo_filename[]' type='file' /> </td> </tr> <tr> <td> Title: <input name='photo_caption[]' type="text" size="30"> </td> </tr><tr> <td></td><td><input type="submit" name="submit" value="Upload Photos"/></td> </tr> </table> </form>
  3. Hi guys I am using the code below to upload a series of images to a site, however the records are not being added to the database nor the images being uploaded, but it is doing the redirect at the bottom of the script. Any ideas what is going wrong <?php include('../includes/connect_inc.php'); include("config.inc.php"); set_time_limit(1200); // initialization $result_final = ""; $counter = 0; // List of our known photo types $known_photo_types = array( 'image/pjpeg' => 'jpg', 'image/jpeg' => 'jpg', 'image/gif' => 'gif', 'image/bmp' => 'bmp', 'image/x-png' => 'png' ); // GD Function List $gd_function_suffix = array( 'image/pjpeg' => 'JPEG', 'image/jpeg' => 'JPEG', 'image/gif' => 'GIF', 'image/bmp' => 'WBMP', 'image/x-png' => 'PNG' ); // Fetch the photo array sent by preupload.php $photos_uploaded = $_FILES['photo_filename']; // Fetch the photo caption array $photo_caption = $_POST['photo_caption']; while( $counter <= count($photos_uploaded) ) { if($photos_uploaded['size'][$counter] > 0) { if(!array_key_exists($photos_uploaded['type'][$counter], $known_photo_types)) { $result_final .= "File ".($counter+1)." is not a photo<br />"; } else { mysql_query( "INSERT INTO gallery_photos(`photo_filename`, `photo_caption`, `photo_category`) VALUES('0', '".addslashes($photo_caption[$counter])."', '".addslashes($_POST['category'])."')" )or die(mysql_error()); $new_id = mysql_insert_id(); $filetype = $photos_uploaded['type'][$counter]; $extention = $known_photo_types[$filetype]; $filename = $new_id.".".$extention; mysql_query( "UPDATE gallery_photos SET photo_filename='".addslashes($filename)."' WHERE photo_id='".addslashes($new_id)."'" ); // Store the orignal file copy($photos_uploaded['tmp_name'][$counter], $images_dir."/".$filename); // Let's get the Thumbnail size $size = GetImageSize( $images_dir."/".$filename ); if($size[0] > $size[1]) { $thumbnail_width = 100; $thumbnail_height = (int)(100 * $size[1] / $size[0]); } else { $thumbnail_width = (int)(100 * $size[0] / $size[1]); $thumbnail_height = 100; } // Build Thumbnail with GD 1.x.x, you can use the other described methods too $function_suffix = $gd_function_suffix[$filetype]; $function_to_read = "ImageCreateFrom".$function_suffix; $function_to_write = "Image".$function_suffix; // Read the source file $source_handle = $function_to_read ( $images_dir."/".$filename ); if($source_handle) { // Let's create an blank image for the thumbnail $destination_handle = ImageCreate ( $thumbnail_width, $thumbnail_height ); // Now we resize it ImageCopyResized( $destination_handle, $source_handle, 0, 0, 0, 0, $thumbnail_width, $thumbnail_height, $size[0], $size[1] ); } // Let's save the thumbnail $function_to_write( $destination_handle, $images_dir."/tb_".$filename ); ImageDestroy($destination_handle ); // $result_final .= "<img src='".$images_dir. "/tb_".$filename."' /> File ".($counter+1)." Added<br />"; } } $counter++; } // Print Result header("Location: add-photos.php"); ?>
  4. If I was to do this how would I get the end time that is selected from a menu of either 12:00:00 or 17:00:00 into the db.
  5. I have tried adding the field to a database and I am getting the same error message but on a different line in the code.
  6. Will I be able to add the $end_date_time to a database as it is?
  7. I am trying to echo the $end_date_time line and the error is on the echo line, so my thoughts were that the $end_date_time variable is causing the error date_default_timezone_set('Europe/London'); // <- set timezone first $date=date('Y-m-d'); $end_date=date('Y-m-d',strtotime($date .'+4 days')); $end_time=$_POST['end_time'].':00:00'; $end_date_time=DateTime::createFromFormat( 'Y-m-d H:i:s', $end_date . " " . $end_time); $min_bid=$_POST['reserve']; echo "End Time is ".$end_time; echo "<br/>Today is ".$date; echo "<br/>End Date is ".$end_date; echo "<br/>End Date and Time is ".$end_date_time;
  8. I am still getting Catchable fatal error: Object of class DateTime could not be converted to string the php is date_default_timezone_set('Europe/London'); // <- set timezone first $date=date('Y-m-d'); $end_date=date('Y-m-d',strtotime($date .'+4 days')); $end_time=$_POST['end_time'].':00:00'; $end_date_time=DateTime::createFromFormat( 'Y-m-d H:i:s', $end_date . " " . $end_time);
  9. I am still getting the same error, if it helps I have copied how I get ther end_date and end_time $end_date=date('Y-m-d',strtotime($date .'+4 days')); $end_time=$_POST['end_time'].':00:00'; $end_date_time=DateTime::createFromFormat( 'Y-m-d H:i:s', $end_date . " " . $end_time);
  10. As requested the output of that is 2012-01-2212:00:00
  11. Tried that and getting an error of Object of class DateTime could not be converted to string
  12. I have now changed it to below $end_date_time=DateTime::createFromFormat( 'Y-m-d H:i:s', $end_date $end_time); I am getting the following error Parse error: syntax error, unexpected T_VARIABLE in /home/sites/trade-bidz.co.uk/public_html/add-vehicle.php on line 40
  13. Hi guys I hav a form where a user selects an end time and the date will be 4 days from today. I have been able to get the date to populate, but I am trying to join the two fields together but with no luck. I have the end date caluclated using the code below and this works $end_date=date("Y-m-d",$dateplus4); The end time is selected from a menu where the user selects either 12 or 17 (12:00:00 or 17:00:00) I have tried $end_date_time=$end_date." ".$end_time; I have also tried strtotime and mktime, but obviuosly not doing it properly. Any help would be great.
  14. Hi I have a regex that currently only allows uppercase $.validationEngineLanguage.allRules["postcodeUK"] = { // UK zip codes "regex": /^([A-PR-UWYZ0-9][A-HK-Y0-9][AEHMNPRTVXY0-9]?[ABEHMNPRVWXY0-9]? {1,2}[0-9][ABD-HJLN-UW-Z]{2}|GIR 0AA)$/, "alertText": "* Invalid postcode" }; How do I change this to allow lowercase as well?
  15. Point taken, I have cut down the code, so below is the initialisation of the jqueryaccordion and the image tagging <script> $("#img").tag({ canDelete: false, canTag: false, }); </script> <script type="text/javascript"> $(function() { $('.gallery a').lightBox(); }); </script> <script> $(document).ready(function() { $("#accordion").accordion(); }); </script> Below is the code for the accordian <div id="accordion"> <h3><a href="#">Main Details</a></h3> <div> Vehicle details are going here </div> <h3><a href="#">Photos</a></h3> <div> <div class="gallery"> Photos are showing here </div> </div> <h3><a href="#">Damage</a></h3> <div> <img id="img" src="images/car-outline.jpg"/> </div> <h3><a href="#">Seller Details</a></h3> <div> Seller Details Here </div> </div> <div> The problem is, if I take the img tag outside of the accordian then the image shows correctly, but it doesn't show when inside the accordian, if you need any more then please let me know.
  16. Is anybody able to help me with this, I am not sure if it is easy to solve or if it is not possible.
  17. I have tried to populate part of a jquery accordion with content generated using AJAX, the html markup for the whole page is below, the offending section is the <img id="img" src="images/car-outline.jpg"/> <!doctype html public "-//W3C//DTD HTML 4.0 //EN"> <html> <head> <title>Trade-Bidz :: View Lot :: RENAULT SCENIC EXPRESSION 16V A MPV</title> <link href="style/trade-bidz.css" rel="stylesheet" type="text/css" /> <link rel="stylesheet" href="css/validationEngine.jquery.css" type="text/css"/> <link rel="stylesheet" href="css/template.css" type="text/css"/> <script src="js/jquery-1.6.min.js" type="text/javascript"> </script> <script src="js/jquery.validationEngine.js" type="text/javascript" charset="utf-8"> </script> <script src="js/languages/jquery.validationEngine-en.js" type="text/javascript" charset="utf-8"> </script> <script src="js/contrib/other-validations.js" type="text/javascript" charset="utf-8"> </script> <script> jQuery(document).ready(function(){ // binds form submission and fields to the validation engine jQuery("#formID").validationEngine(); }); </script> <link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css"> <script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.min.js'></script> <script src="http://jqueryui.com/ui/jquery.ui.core.js"></script> <script src="http://jqueryui.com/ui/jquery.ui.widget.js"></script> <script type='text/javascript' src='source/jquery.tag.js'></script> <link media="screen" rel="stylesheet" href="css/jquery.tag.css" type="text/css" /> <link media="screen" rel="stylesheet" href="css/jquery-ui.custom.css" type="text/css" /> <script type="text/javascript" src="js/jquery.lightbox-0.5.js"></script> <link rel="stylesheet" type="text/css" href="style/jquery.lightbox-0.5.css" media="screen" /> <script> $("#img").tag({ canDelete: false, canTag: false, }); </script> <script type="text/javascript"> $(function() { $('.gallery a').lightBox(); }); </script> <script> $(document).ready(function() { $("#accordion").accordion(); }); </script> </head> <body> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <table> <tr> <td colspan="2"> <div id="header"> <div id="login_form"> <form name="login" method="post" action="login.php"> <table><tr><td>Username:</td><td><input type="text" name="username"/></td></tr> <table><tr><td>Password:</td><td><input type="password" name="password"/></td></tr> <table><tr><td></td><td><input type="hidden" name="redirecturl" value="/lot.php?lot_id=34"/></td></tr> <table><tr><td></td><td><input type="submit" value="Login" name="submit"/></td></tr> </table> </form></div> <img src="images/logo.jpg" width="300" /></div> </td> </tr> <tr> <tr> <td colspan="2"> <div id="nav_head"> <ul> <li><a href="index.php">Home</a></li> <li><a href="browse.php">Buying</a></li> <li><a href="sell-vehicle.php">Selling</a></li> <li><a href="contact-us.php">Contact Us</a></li> <li><a href="terms.php">Terms</a></li> <li><a href="my-trade-bidz.php">My Trade-Bidz</a></li> <li><a href="how-it-works.php">How It Works</a></li> </ul> </div> </td> </tr> <tr> <td width="200"> <div class="left_column_box"> <h3>Search Items</h3> <form method="post" action="browse.php"> <table width="100%"> <tr><td>Make:</td> <td><select name="make" onchange="reload(this.form)"> <option selected="selected">Please select...</option> <option value=""></option><option value="RENAULT">RENAULT</option> </select></td> </tr> <tr><td>Model:</td><td> <select name="model"> <option>All Models</option><option value=""></option> </select> </td></tr> <tr><td>Fuel Type:</td> <td> <select name="fuel"> <option selected="selected">Please Select</option> <option value="diesel">Petrol</option> <option value="diesel">Diesel</option> </select> </td></tr> <tr><td>Sort by:</td> <td> <select name="fuel"> <option value="end_date_time DESC">Time - Ending First</option> <option value="current_price ASC">Price - Cheapest First</option> </select> </td></tr> <tr><td></td><td><input type="submit" name="make_model_search" value="Search"/></td></tr> </table> </form> </div> <div class="left_column_box"> <h3>Ending Soon</h3> There are no lots completing today </div> <div class="left_column_box"> <h3>Other Selected Lots</h3> <div class="mini_lot"> <h4> </h4> <img src="photos/"/><br/> Current Bid: £0<br/> Time Left: Countdown will go here<br/> <a href="lot.php?lot_id=42">View Lot</a><br/> </div><div class="mini_lot"> <h4>RENAULT SCENIC EXPRESSION 16V A</h4> <img src="photos/20.jpg"/><br/> Current Bid: £3434<br/> Time Left: Countdown will go here<br/> <a href="lot.php?lot_id=34">View Lot</a><br/> </div> </div> </td> <td> User ID: 0<br /> Seller ID: 39<br /> Allowed to Bid: no<br /> Allowed to Watch: no<br /> <img src="photos/20.jpg"/> <div id="countdown">This lot ends is <span class="countdown">Insert Countdown here</span></div> <div id="accordion"> <h3><a href="#">Main Details</a></h3> <div> <table> <tr> <td>Make/Model</td><td>RENAULT SCENIC EXPRESSION 16V A MPV</td></tr> <tr> <td>Date of Manufacture:</td><td></td></tr> <tr> <td>Date of First Registration:</td><td></td></tr> <tr> <td>Colour:</td><td>GREEN</td></tr> <tr> <td>Number of Doors:</td><td>5</td></tr> <tr> <td>Engine Size:</td><td>1598</td></tr> <tr> <td>Fuel Type:</td><td>PETROL</td></tr> <tr> <td>Gearbox Type:</td><td>TIPTRONIC AUTOMATIC</td></tr> <tr> <td>Previous Keepers:</td><td>1</td></tr> <tr> <td>BHP:</td><td>115.10</td></tr> <tr> <td>Emissions:</td><td>0.00</td></tr> <tr> <td>Tread Depths:</td> <td>F/O/S 0mm F/N/S 0mm</td> </tr> <tr> <td></td> <td>R/O/S 0mm R/N/S 0mm</td> </tr> <tr><td>Service History:</td><td>0</td></tr> <tr><td>Vehicle Condition:</td><td>Please select V </td></tr> <tr><td>MOT Date:</td> <td>0000-00-00</td> </tr> </table> </div> <h3><a href="#">Photos</a></h3> <div> <div class="gallery"> <ul><li><a href="photos/20.jpg"><img src="photos/20.jpg" title=""/></a></li></ul> </div> </div> <h3><a href="#">Damage</a></h3> <div> <img id="img" src="images/car-outline.jpg"/> </div> <h3><a href="#">Seller Details</a></h3> <div> Seller Details Here </div> </div> <div> <table width="60%"> <tr><td width="40%">Current Price</td><td>£3434</td></tr> <tr><td>Current High Bidder</td><td>Boyce Autos<input type="hidden" name="high_bidder" value="42" readonly="readonly" /></td></tr> </table>You need to <a href="login.php">login</a> to be able to bid on this item </div> <a href="https://twitter.com/share" class="twitter-share-button" data-count="vertical">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script> <div class="fb-like" data-send="true" data-show-faces="false" data-font="arial"></div> </td> </tr> <tr> <td colspan="2"> </td> </tr> <tr> </body> <script> $(document).ready(function(){ $("#img").tag({ save: function(width,height,top_pos,left,label,the_tag){ $.post("ajax.php",{'action':'save','width':width,'height':height,'top':top_pos,'left':left,'label':label},function(id){ the_tag.setId(id); }); }, remove: function(id){ $.post("ajax.php",{'action':'delete','id':id}); } }); $.getJSON("ajax.php",{'action':'list','lot_id':34},function(tags){ $.each(tags, function(key,tag){ $("#img").addTag(tag.width,tag.height,tag.top,tag.left,tag.label,tag.id); }); }); }); </script> </html> If I take the <img id="img" src="images/car-outline.jpg"/> out of the accordian then the image is displayed, so it suggests that there is a conflict on the page somewhere, any help you can provide will be much appreciated.
  18. Is there a recommended way to do this?
  19. Hi Guys I have a date of birth field using the jquery datepicker using the date format of dd/mm/yyyy, this is then used to calculate the users age, however using the code below and a date of 1st November 1978 (01/11/1978) then it calculate the age to be 33 and if I change the date to be 11/01/1978 then it calculates the age to be 32 <script type="text/javascript"> function get_age(){ var today = new Date(), // today date object birthday_val = $("#dateofbirth").val().split('/'), // input value birthday = new Date(birthday_val[2],birthday_val[0]-1,birthday_val[1]), // birthday date object // calculate age age = (today.getMonth() == birthday.getMonth() && today.getDate() > birthday.getDate()) ? today.getFullYear() - birthday.getFullYear() : (today.getMonth() > birthday.getMonth()) ? today.getFullYear() - birthday.getFullYear() : today.getFullYear() - birthday.getFullYear()-1; alert("Age: " + age); } </script> What would I need to change in the javascript above to use the date format of dd/mm/yyyy?
  20. It appears to be calling the javascript with no errors. The page that I am trying to look at is www.trade-bidz.co.uk Login name phpfreaks@trade-bidz.co.uk Password secret I have set up a test account for people to login and see what happens, but I can't see any errors with the code.
  21. Hi I have the following code that has been rendered using php, but I am trying to use the jquery ui tabs, I have used the same code and files that are used on the demo of the tabs from the jquery site, but the tabs do not display. <!doctype html public "-//W3C//DTD HTML 4.0 //EN"> <html> <head> <title>Trade-Bidz</title> <link href="style/trade-bidz.css" rel="stylesheet" type="text/css" /> <script src="js/jquery-1.6.2.min.js"></script> <script src="js/jquery.ui.core.js"></script> <script src="js/jquery.ui.widget.js"></script> <script src="js/jquery.ui.tabs.js"></script> <script> $(function() { $( "#tabs" ).tabs(); }); </script> </head> <body> <table> <tr> <td colspan="2"> <div id="header"> <div id="login_form"> <a href="logout.php">Logout</a></div> <img src="images/logo.jpg" width="300" /></div> </td> </tr> <tr> <tr> <td colspan="2"> <div id="nav_head"> <ul> <li><a href="index.php">Home</a></li> <li><a href="browse.php">Buying</a></li> <li><a href="sell-vehicle.php">Selling</a></li> <li><a href="contact-us.php">Contact Us</a></li> <li><a href="terms.php">Terms</a></li> <li><a href="my-trade-bidz.php">My Trade-Bidz</a></li> <li><a href="how-it-works.php">How It Works</a></li> </ul> </div> </td> </tr> <tr> <td width="200"> <div class="left_column_box"> <h3>Search Items</h3> <form method="post" action="browse.php"> <table width="100%"> <tr><td>Make:</td> <td><select name="make" onchange="reload(this.form)"> <option selected="selected">Please select...</option> <option value="MG">MG</option><option value="RENAULT">RENAULT</option> </select></td> </tr> <tr><td>Model:</td><td> <select name="model"> <option>Select Make</option> </select> </td></tr> <tr><td>Style:</td><td></td></tr> <tr><td></td><td><input type="submit" name="make_model_search" value="Search"/></td></tr> </table> </form> </div> <div class="left_column_box"> <h3>Ending Soon</h3> There are no lots completing today </div> <div class="left_column_box"> <h3>Other Selected Lots</h3> <div class="mini_lot"> <h4>RENAULT SCENIC EXPRESSION 16V A</h4> <img src="photos/22.jpg"/><br/> Current Bid: £2133<br/> Time Left: Countdown will go here<br/> <a href="lot.php?lot_id=41">View Lot</a><br/> </div><div class="mini_lot"> <h4>MG ZR</h4> <img src="photos/21.jpg"/><br/> Current Bid: £1213<br/> Time Left: Countdown will go here<br/> <a href="lot.php?lot_id=40">View Lot</a><br/> </div><div class="mini_lot"> <h4>MG ZR</h4> <img src="photos/"/><br/> Current Bid: £12<br/> Time Left: Countdown will go here<br/> <a href="lot.php?lot_id=37">View Lot</a><br/> </div> </div> </td> <td valign="top"> <div id="tabs"> <ul> <li><a href="#tabs-1">Buying</a></li> <li><a href="#tabs-2">Selling</a><span class="count">6</span></li> <li><a href="#tabs-3">Watching</a><span class="count">0</span></li> <li><a href="#tabs-4">Messages</a></li> <li><a href="#tabs-5">Profile</a></li> </ul> <div id="tabs-1"> </div> <div id="tabs-2"> <div class="">Active</div> <h2>Items You are Selling</h2> <table><tr><td>Reg Number</td><td>Make Model</td><td>End Date</td><td>Reserve</td>Current Bid</td><td>Current High Budder</td></tr><tr><td>0</td> <td>RENAULT SCENIC EXPRESSION 16V A MPV</td> <td>2011-09-20</td> <td>3344.00</td> <td>3434</td> <td>42</td></tr></table><div class="">Ended</div> You currently have not vehicle available for auction. To sell a vehicle click <a href="sell-vehicle.php">here</a> </div> <div id="tabs-3"> You are currently not watching any items </div> <div id="tabs-4"> </div> <div id="tabs-5"> <table> <tr> <td>Trader Name:</td><td>New Dealer</td></tr> <tr><td valign="top">Address:</td><td>17 Stonehenge Croft<br/><br/><br/>Birmingham<br/>West Midlands<br/>B14 5PL</td></tr> <tr><td>Phone Number:</td><td>01214745928</td></tr> </table> <h1>Feedback</h1> Feedback will appear here </div> </div> </td> </tr> <tr> <td colspan="2"> </td> </tr> <tr> </body> </html> Any ideas why the tabs do not display?
  22. Try downloading the jquery validation engine from http://www.position-absolute.com/articles/jquery-form-validator-because-form-validation-is-a-mess/ this has a UK Postcode validator ready made.
  23. Hi I am using the jquery validation engine available from [url http://www.position-absolute.com/articles/jquery-form-validator-because-form-validation-is-a-mess/]here[/url] I have got it all implemented, however I want to create a rule that checks that a user trying to register is at least 18 years old, does anybody have any ideas how this can be done using jquery? Any help would be greatly appreciated. Mark
  24. Which of the lines below would you recommend to be removed, or maybe moved to a new order. <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script> <link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" /> <link href="style/trade-bidz.css" rel="stylesheet" type="text/css" /> <link rel="stylesheet" href="css/validationEngine.jquery.css" type="text/css"/> <link rel="stylesheet" href="css/template.css" type="text/css"/> <script src="js/jquery-1.6.min.js" type="text/javascript"> </script> <script src="js/languages/jquery.validationEngine-en.js" type="text/javascript" charset="utf-8"> </script> <script src="js/jquery.validationEngine.js" type="text/javascript" charset="utf-8"> </script> <script src="js/contrib/other-validations.js" type="text/javascript" charset="utf-8"> </script> <script> jQuery(document).ready(function(){ // binds form submission and fields to the validation engine jQuery("#formID").validationEngine(); }); </script> <link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css"> <script src="http://jqueryui.com/ui/jquery.ui.core.js"></script> <script src="http://jqueryui.com/ui/jquery.ui.widget.js"></script> <script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.min.js'></script> <script type='text/javascript' src='source/jquery.tag.js'></script> <link media="screen" rel="stylesheet" href="css/jquery.tag.css" type="text/css" /> <link media="screen" rel="stylesheet" href="css/jquery-ui.custom.css" type="text/css" /> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript" src="js/jquery.lightbox-0.5.js"></script> <link rel="stylesheet" type="text/css" href="style/jquery.lightbox-0.5.css" media="screen" /> <script type="text/javascript"> $(function() { $('.gallery a').lightBox(); }); </script>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.