Jump to content

andrew_biggart

Members
  • Posts

    363
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by andrew_biggart

  1. i dont mind were i get the emails as long as i get them can anyone recommend any email types to use???? Thanks btw
  2. so what do u recommend for i was round this then?? im currently usuing uni's server so i dont have an email addresse for this server !! im so confused
  3. Hey i was just wondering when ever you create a contact from and then email the details to an email, does a hotmail.com not allow this function? I got a contact form online but it doesnt forward the email to my hotmail account! im usuing this code, which takes the info from a flash form..... <?php /* --------------------------- php and flash contact form. by www.MacromediaHelp.com --------------------------- Note: most servers require that one of the emails (sender or receiver) to be an email hosted by same server, so make sure your email (on last line of this file) is one hosted on same server. --------------------------- */ // read the variables form the string, (this is not needed with some servers). $subject = $_REQUEST["subject"]; $message = $_REQUEST["message"]; $sender = $_REQUEST["sender"]; // include sender IP in the message. $full_message = $_SERVER['REMOTE_ADDR'] . "\n\n" . $message; $message= $full_message; // remove the backslashes that normally appears when entering " or ' $message = stripslashes($message); $subject = stripslashes($subject); $sender = stripslashes($sender); // add a prefix in the subject line so that you know the email was sent by online form $subject = "Contact form ". $subject; // send the email, make sure you replace email@yourserver.com with your email address if(isset($message) and isset($subject) and isset($sender)){ mail(" my hotmail email addresse hear", $subject, $message, "From: $sender"); } ?> Is there any email type that anyone can recommend? Thanks in advance
  4. after adding a product i would like to get the last added item id and then set it as a variable! im usuing the following code if anyone can help! Thanks <? include("config.php"); if ($_POST['submit2']) { $prousid = ($_POST['prousid']); $protit=($_POST['protit']); $prouspri=($_POST['propri']); $proudes=($_POST['prodes']); $day=($_POST['day']); $month=($_POST['month']); $year=($_POST['year']); $hour=($_POST['hour']); $min=($_POST['min']); $catid=($_POST['catid']); // Where you want the files to upload to $uploaddir = "images"; // Where you want the files to upload to // Upload Part if(is_uploaded_file($_FILES['file']['tmp_name'])) { move_uploaded_file($_FILES['file']['tmp_name'],$uploaddir.'/'.$_FILES['file']['name']); //insert item and image into the database $inssql = "INSERT INTO $tbl_name (user_id, category_id, item_image, item_name, item_starting_price, item_description, end_year, end_month, end_day, end_hour, end_min ) VALUES( '$prousid', '$catid','" . $_FILES['file']['name']. "', '$protit', '$prouspri', '$proudes', '$year', '$month', '$day', '$hour', '$minute')"; mysql_query($inssql); $item_id=mysql_insert_id() ; echo "<br/>"; echo "<br/>"; echo "Success, Your product has now been added to urbanwear's databases and is now able to be bidded on."; echo "<br/>"; echo "<a href='item_details.php?id="$item_id"'>" Click hear to view your item "</a>"; echo "<br/>"; echo "Thankyou for using www.urbanwear.co.uk number 1 for buying and selling urban clothing... "; echo "<br/>"; } else { echo "OPSY !! .. There was a problem with something, please go back and make sure everything has been entered correctly"; } } mysql_close(); ?>
  5. Hey everyone i hope someone can help me i currently have added a search bar to my online auction site, when ever i search its working to an extent. It displays the selected categories no problem but brings up every item in the category, not just what i searched for. Im assuming this is because it is searching for each individual letter and not each word! I have tried $search = addslashes($_POST['search']); but i think this just takes away the white space. How do i define each word??? Im usuing the following code to do the search! The actuall search bar code is <form name="shop_search" method="post" action="results.php"> <img alt="search" src="search.gif" width="77" height="17" /><input name="q" type="text" id="search" style="width: 288px" /> <?php include("config3.php"); //get subjects from database $sql = "SELECT * FROM $tbl_name ORDER BY id;"; $result = mysql_query($sql); ?><select name="cat"> <?php //show subjects while($catrow = mysql_fetch_assoc($result)) { echo "<option value='" . $catrow['id'] . "'>" . $catrow['cat'] . "</option>"; } ?> </select> <input name="Submit1" type="submit" value="Search Urbanwear" /> </form> and the results page is as follows <?php include("config.php"); $search = addslashes($_POST['search']); $cat=($_POST['cat']); // Retrieve data from database $sql="SELECT * FROM $tbl_name WHERE item_name LIKE '%" . $search . "%' AND category_id LIKE $cat "; $result=mysql_query($sql); // Start looping rows in mysql database. while($rows=mysql_fetch_array($result)){ ?> any help or a poin in the right direction would be appreciated ! Thanks in advance
  6. thanks very much m8t please bare with me im just a beginner lol
  7. Ok this is the simplest piece of code ever i know but its playing up! Im ususing it to insert a new category into my database. It inserts the data but gives a blanc screen as if it hasnt worked instead of redirecting! ANY1 ANY IDEAS?? <? include("config.php"); $cat = ($_POST['cat']); $inssql = "INSERT INTO biggart_categories (cat) VALUES( '$cat')"; mysql_query($inssql); if($result){ header("location:admin_account_category_view.php"); } // close connection mysql_close(); ?>
  8. can anyone fins the the error in this code ive been at this so long i cant see anything??? <? include("config.php"); if ($_POST['submit1']) { $prousid = ($_POST['cat']); $inssql = "INSERT INTO biggart_categories (cat) VALUES( '$cat')"; mysql_query($inssql); header("location:admin_account_category_view.php"); } } mysql_close(); ?> Thanks in advance
  9. Never min i have found it now and it works whopppppppp THANK YOU SO MUCH RAY YOU ARE A LEGEND (sorry for the caps very exceited )
  10. Thanks so much ray you are a legend it works yes!!! But yes the dreaded but, it messes with my layout so ive tried to add it to my normal tables now and now im getting a syntax error can anyone spot it ????? please and thanks for everyones help especially ray aka legend!! <?php include("config.php"); $table = "biggart_members"; if(!isset($_POST['perform'])){ $sql="SELECT * FROM $table"; $result=mysql_query($sql); $count=mysql_num_rows($result); ?> <br/> <form name="action" id="action" method="post" action="<?=$_SERVER['PHP_SELF']?>"> <table class= "select_header"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td style="width: 370px" class="select_header">Admin Section </td> </tr> </table> <br/> <table class= "select_myebaygrey"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td style="width: 370px">View all users</td> </tr> </table> <br/> <table class= "select_myebaygrey"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td style="width: 30px" class="style28">Userid </td> <td style="width: 69px" class="style28">First name</td> <td style="width: 102px" class="style28">Email</td> <td style="width: 107px" class="style28">Username</td> <td style="width: 136px" class="style28">Avatar</td> <td class="style28">Delete User</td> </tr> </table> <table class= "select_main"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td style="width: 33px" ><? echo $rows['user_id']; ?></td> <td style="width: 94px" ><? echo $rows['name']; ?></td> <td style="width: 97px" ><? echo $rows['email']; ?></td> <td style="width: 86px" ><? echo $rows['username']; ?></td> <td style="width: 122px" ><? echo "<img src='avatars/". $rows['user_avatar'] . "' style='width:50px; height:50px;' />";?></td> <td align="center"><input type="checkbox" name="checkbox[]" id="<?=$rows['user_id']?>" value="<?=$rows['user_id']?>" /></td> </tr> </table> <?php } ?> <table> <tr> <td colspan="5" align="right" ><input type="submit" name="perform" id="perform" value="Delete Selected" /> </td> </tr> </table> <?php } else { foreach($_POST['checkbox'] as $user_id) { // This will loop through the checked checkboxes $sql = "DELETE FROM $table WHERE user_id='$user_id' LIMIT 1"; echo $sql."<br />"; mysql_query($sql) or die(mysql_error()); } } mysql_close(); ?> </form>
  11. [move]any 1 ? ? ? ? ?? ? ??? pleassssssssssseeeee help ???[/move]
  12. ok thanks for that i am no longer getting a blanc screen but the code isnt doing what i wnat it to do !! All i want is to be able to delte users by checking a checkbox and clicking delete! does anyone have any ideas why this code would not work??? Thanks again sorry if im pissing any1 off im new to this forum <?php include("config.php"); if(!isset($_POST['delete'])){ $sql="SELECT * FROM biggart_members"; $result=mysql_query($sql); $count=mysql_num_rows($result); ?><table width="400" border="0" cellspacing="1" cellpadding="0"> <tr> <td><form name="action" id="action" method="post" action="<?=$_SERVER['PHP_SELF']?>"> <table width="400" border="0" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC"> <tr> <td bgcolor="#FFFFFF"> </td> <td colspan="4" bgcolor="#FFFFFF"><strong>Delete multiple rows in mysql</strong> </td> </tr> <tr> <td align="center" bgcolor="#FFFFFF">#</td> <td align="center" bgcolor="#FFFFFF"><strong>Id</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Name</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Lastname</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Email</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Username</strong></td> </tr> <?php while($rows=mysql_fetch_assoc($result)){ ?> <tr> <td align="center" bgcolor="#FFFFFF"> <input type="checkbox" name="<?=$row[user_id]?>" id="<?=$row[user_id]?>" value="<?=$row[user_id]?>" /></td> <td bgcolor="#FFFFFF"><?php echo $rows['user_id']; ?></td> <td bgcolor="#FFFFFF"><?php echo $rows['name']; ?></td> <td bgcolor="#FFFFFF"><?php echo $rows['lastname']; ?></td> <td bgcolor="#FFFFFF"><?php echo $rows['email']; ?></td> <td bgcolor="#FFFFFF"><?php echo $rows['username']; ?></td> </tr> <?php } ?> <tr> <td colspan="5" align="center" bgcolor="#FFFFFF"><input type="submit" name="perform" id="perform" value="Delete Selected" /> </td> </tr> <?php if($_POST['perform']) { foreach($_POST as $user_id) { // This will loop through the checked checkboxes mysql_query("DELETE FROM biggart_members WHERE user_id='$user_id' LIMIT 1"); } } } mysql_close(); ?> </table> </form> </td> </tr> </table>
  13. CAN ANYONE SPOT THE PHP ERROR IN THE SYNTAX or why this wouldnt work ???? <?php include("config.php"); if(!isset($_POST['delete'])){ $sql="SELECT * FROM biggart_members"; $result=mysql_query($sql); $count=mysql_num_rows($result); ?><table width="400" border="0" cellspacing="1" cellpadding="0"> <tr> <td><form name="action" id="action" method="post" action="<?=$_SERVER['PHP_SELF']?>"> <table width="400" border="0" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC"> <tr> <td bgcolor="#FFFFFF"> </td> <td colspan="4" bgcolor="#FFFFFF"><strong>Delete multiple rows in mysql</strong> </td> </tr> <tr> <td align="center" bgcolor="#FFFFFF">#</td> <td align="center" bgcolor="#FFFFFF"><strong>Id</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Name</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Lastname</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Email</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Username</strong></td> </tr> <?php while($rows=mysql_fetch_assoc($result)){ ?> <tr> <td align="center" bgcolor="#FFFFFF"><input type="checkbox" name="<?=$row[user_id]?>" id="<?=$row[user_id]?>" value="<?=$row[user_id]?>" /></td> <td bgcolor="#FFFFFF"><?php echo $rows['user_id']; ?></td> <td bgcolor="#FFFFFF"><?php echo $rows['name']; ?></td> <td bgcolor="#FFFFFF"><?php echo $rows['lastname']; ?></td> <td bgcolor="#FFFFFF"><?php echo $rows['email']; ?></td> <td bgcolor="#FFFFFF"><?php echo $rows['username']; ?></td> </tr> <?php } ?> <tr> <td colspan="5" align="center" bgcolor="#FFFFFF"><input type="submit" name="perform" id="perform" value="Delete Selected" /> </td> </tr> <?php if($_POST['perform']) { foreach($_POST as $user_id) { // This will loop through the checked checkboxes mysql_query("DELETE FROM biggart_members WHERE user_id='$user_id' LIMIT 1"); } } mysql_close(); ?> </table> </form> </td> </tr> </table> </div> Thanks in advance
  14. aghhhhh this is still not workin :?( when i press delete it returns a blanc screen this is what im using <?php include("config.php"); if(!isset($_POST['delete'])){ $sql="SELECT * FROM biggart_members"; $result=mysql_query($sql); $count=mysql_num_rows($result); ?><table width="400" border="0" cellspacing="1" cellpadding="0"> <tr> <td><form name="form1" method="post" action=""> <table width="400" border="0" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC"> <tr> <td bgcolor="#FFFFFF"> </td> <td colspan="4" bgcolor="#FFFFFF"><strong>Delete multiple rows in mysql</strong> </td> </tr> <tr> <td align="center" bgcolor="#FFFFFF">#</td> <td align="center" bgcolor="#FFFFFF"><strong>Id</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Name</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Lastname</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Email</strong></td> </tr> <?php while($rows=mysql_fetch_assoc($result)){ ?> <tr> <td align="center" bgcolor="#FFFFFF"><input name="checkbox[]" type="checkbox" id="checkbox[]" value="<?php echo $rows['user_id']; ?>"></td> <td bgcolor="#FFFFFF"><?php echo $rows['user_id']; ?></td> <td bgcolor="#FFFFFF"><?php echo $rows['name']; ?></td> <td bgcolor="#FFFFFF"><?php echo $rows['lastname']; ?></td> <td bgcolor="#FFFFFF"><?php echo $rows['email']; ?></td> </tr> <?php } ?> <tr> <td colspan="5" align="center" bgcolor="#FFFFFF"><input name="delete" type="submit" id="delete" value="Delete"></td> </tr> <?php } else { $result = 1; // Check if delete button active, start this foreach($_POST['checkbox'] as $id){ $del_id = $id; $sql = "DELETE FROM biggart_members WHERE id='$del_id'"; $res = mysql_query($sql); if(!$res){ // set result to 0 if failure $result = 0; } } // if successful redirect to delete_multiple.php if($result){ echo "<meta http-equiv=\"refresh\" content=\"0;URL=delete_multiple.php\">"; } } mysql_close(); ?></table> </form> </td> </tr> </table> </div>
  15. lol sorry everyone just to clarify i have taken this staright from a tutorial website and changed the database connection to check it worked first so i havnt even written this code !!! blame the author lol can anyone please offer some advice as to what path to follow to do this and i will write my own code !!! POSSIBLY lol i know the delete variable is undefined and i have tried changing it to if $_POST('delete'); and things like that but ive been staring at php staright for about a week my head is wedged between my arse and i cant make heads or tails of anything anyone that can point me in the right direction it would much appreciated thanks in advance
  16. can anyone please find a solition to this my assignment deadline is in 24 hours <?php $host="localhost"; // Host name $username=""; // Mysql username $password=""; // Mysql password $db_name="test"; // Database name $tbl_name="test_mysql"; // 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"); $sql="SELECT * FROM $tbl_name"; $result=mysql_query($sql); $count=mysql_num_rows($result); ?> <table width="400" border="0" cellspacing="1" cellpadding="0"> <tr> <td><form name="form1" method="post" action=""> <table width="400" border="0" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC"> <tr> <td bgcolor="#FFFFFF"> </td> <td colspan="4" bgcolor="#FFFFFF"><strong>Delete multiple rows in mysql</strong> </td> </tr> <tr> <td align="center" bgcolor="#FFFFFF">#</td> <td align="center" bgcolor="#FFFFFF"><strong>Id</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Name</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Lastname</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Email</strong></td> </tr> <?php while($rows=mysql_fetch_array($result)){ ?> <tr> <td align="center" bgcolor="#FFFFFF"><input name="checkbox[]" type="checkbox" id="checkbox[]" value="<? echo $rows['id']; ?>"></td> <td bgcolor="#FFFFFF"><? echo $rows['id']; ?></td> <td bgcolor="#FFFFFF"><? echo $rows['name']; ?></td> <td bgcolor="#FFFFFF"><? echo $rows['lastname']; ?></td> <td bgcolor="#FFFFFF"><? echo $rows['email']; ?></td> </tr> <?php } ?> <tr> <td colspan="5" align="center" bgcolor="#FFFFFF"><input name="delete" type="submit" id="delete" value="Delete"></td> </tr> <? // Check if delete button active, start this if($delete){ for($i=0;$i<$count;$i++){ $del_id = $checkbox[$i]; $sql = "DELETE FROM $tbl_name WHERE id='$del_id'"; $result = mysql_query($sql); } // if successful redirect to delete_multiple.php if($result){ echo "<meta http-equiv=\"refresh\" content=\"0;URL=delete_multiple.php\">"; } } mysql_close(); ?> </table> </form> </td> </tr> </table>
  17. well i got it off a tutorial and i think this is suppost to refer to the delete button but im not to sure :s ive removed the doller sign and tried it like that but that hasnt worked either!! how would i make the delete button a $delete variable ??? Thanks alot by the way
  18. thanks m8t but ive tried that and it isnt bringing up any error but it also isnt deleting anything from the database! im climbing the walllls aghhhhh
  19. im trying to use the following code to delete some of my site users in my admin section can anyone see any reason why it isnt working? thanks in advance <?php $host="localhost"; // Host name $username=""; // Mysql username $password=""; // Mysql password $db_name="test"; // Database name $tbl_name="test_mysql"; // 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"); $sql="SELECT * FROM $tbl_name"; $result=mysql_query($sql); $count=mysql_num_rows($result); ?> <table width="400" border="0" cellspacing="1" cellpadding="0"> <tr> <td><form name="form1" method="post" action=""> <table width="400" border="0" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC"> <tr> <td bgcolor="#FFFFFF"> </td> <td colspan="4" bgcolor="#FFFFFF"><strong>Delete multiple rows in mysql</strong> </td> </tr> <tr> <td align="center" bgcolor="#FFFFFF">#</td> <td align="center" bgcolor="#FFFFFF"><strong>Id</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Name</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Lastname</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Email</strong></td> </tr> <?php while($rows=mysql_fetch_array($result)){ ?> <tr> <td align="center" bgcolor="#FFFFFF"><input name="checkbox[]" type="checkbox" id="checkbox[]" value="<? echo $rows['id']; ?>"></td> <td bgcolor="#FFFFFF"><? echo $rows['id']; ?></td> <td bgcolor="#FFFFFF"><? echo $rows['name']; ?></td> <td bgcolor="#FFFFFF"><? echo $rows['lastname']; ?></td> <td bgcolor="#FFFFFF"><? echo $rows['email']; ?></td> </tr> <?php } ?> <tr> <td colspan="5" align="center" bgcolor="#FFFFFF"><input name="delete" type="submit" id="delete" value="Delete"></td> </tr> <? // Check if delete button active, start this if($delete){ for($i=0;$i<$count;$i++){ $del_id = $checkbox[$i]; $sql = "DELETE FROM $tbl_name WHERE id='$del_id'"; $result = mysql_query($sql); } // if successful redirect to delete_multiple.php if($result){ echo "<meta http-equiv=\"refresh\" content=\"0;URL=delete_multiple.php\">"; } } mysql_close(); ?> </table> </form> </td> </tr> </table>
  20. ok its working to a cetain extent i redirects me to the rite page but its like myaccount.php// any idea why??? this causes the page not to load correctly
  21. u are actually a legend i wil test it now
  22. Can anyone explain how to select two tables and display data from each table on the same page ???? Thanks in advance here is the page im trying to do it on !! i can get the first one sorted just cannot get the second table working it is for the user info at the bottom of the page. <?php include("config.php"); $item_id=$_GET['id']; // Retrieve data from database $sql="SELECT * FROM $tbl_name WHERE item_id='$item_id'"; $result=mysql_query($sql); // Start looping rows in mysql database. while($rows=mysql_fetch_array($result)){ ?> <table class= "select_header"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td style="width: 392px">Buying item : <? echo $rows['item_id']; ?> </td> </tr> </table> <br/> <table class= "select_myebaygrey"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td class="style31">CAUTION, CAUTION, CAUTION !!!!!!! </td> </tr> </table> <br/> <table> <tr><td> <img alt="caution" src="caution.jpg" /></td> <td style="width: 86%"><strong><span class="style32">Caution you are about to purchase this item !</span></strong><br /> <br /> <span class="style19">If you do not want to please go back immediately as when ever this form is processed you will have to pay for this item.<br /> <br /> Please insure all details are filled in and then submit the form.<br /> <br /> <strong>Thanks for shopping with Urbanwear.</strong></span></td></tr> </table> <br/> <table class= "select_myebaygrey"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td>Item Title : </td><td style="width: 370px"><? echo $rows['item_name']; ?></td> </tr> </table> <br/> <table class= "select_main"width="400" border="0" cellspacing="0" cellpadding="4"> <tr><td style="width: 227px"rowspan="7"><? echo "<img src='images/". $rows['item_image'] . "' style='width:200px; height:200px;' />";?></td></tr> <tr><td style="width: 125px" class="style29"><span class="style28">Starting price :</span> £</td><td><? echo $rows['item_starting_price']; ?></td></tr> <tr><td class="style29" style="width: 125px"><span class="style28">Current price :</span> £</td><td></td></tr> <tr><td style="width: 125px" class="style29"><span class="style28">Time left : </span> </td><td><? echo $rows['end_date']; ?></td></tr> <tr><td class="style29" style="width: 125px"><span class="style28">Seller ID : </span> </td><td><? echo $rows['user_id']; ?></td></tr> <tr><td class="style30" style="width: 125px">Number of bids : </td><td></td></tr> <tr><td class="style30" style="width: 125px">Highest Bidder : </td><td></td></tr> </table> <br/> <table class= "select_myebaygrey"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td style="width: 370px">Item Description : </tr> </table> <br/> <table class= "select_des"width="400" border="0" cellspacing="0" cellpadding="4"> <tr><td class="des" style="width: 525px"><? echo $rows['item_description']; ?></td></tr> </table> <br/> <br/> <table class= "select_myebaygrey"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td> </td> </tr> </table> <table class= "select_main"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td style="width: 100%" class="style33">Please insure all of these details are correct! If some of them are incorrect please go back to your account first and modify the incorrect details and then return.</td> </tr> </table> <br/> <br/> <table class= "select_myebaygrey"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td>This Product will be posted to this address !</td> </tr> </table> <table class= "select_main"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td class="controls1" style="width: 108px">First Name</td><td class="details" style="width: 100px"><? echo $rows2['name']; ?></td> </tr> <tr> <td class="controls1" style="width: 108px">Last Name</td><td class="details" style="width: 100px"><? echo $rows2['lastname']; ?></td> </tr> <tr> <td class="controls1" style="width: 108px">Address</td><td class="details" style="width: 100px"><? echo $rows2['addresse_line_1']; ?></td> </tr> <tr> <td class="controls1" style="width: 108px">City</td><td class="details" style="width: 100px"><? echo $rows2['addresse_line_2']; ?></td> </tr> <tr> <td class="controls2" style="width: 108px; text-align: left;">Postcode</td><td class="details1"><? echo $rows2['postcode']; ?></td> </tr> </table> <br/> <br/> <table class= "select_myebaygrey"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td>This Product will be charged to this Bank account Information !</td> </tr> </table> <table class= "select_main"width="400" border="0" cellspacing="0" cellpadding="4"> <tr> <td class="controls1" style="width: 112px">Account Holders First Name</td><td class="details" style="width: 100px"><? echo $rows2['account_fn']; ?></td> </tr> <tr> <td class="controls1" style="width: 112px">Account Holders Last Name</td><td class="details" style="width: 100px"><? echo $rows2['account_ln']; ?></td> </tr> <tr> <td class="controls1" style="width: 112px">Account Bank</td><td class="details" style="width: 100px"><? echo $rows2['account_bank']; ?></td> </tr> <tr> <td class="controls1" style="width: 112px">Account Type</td><td class="details" style="width: 100px"><? echo $rows2['account_type']; ?></td> </tr> <tr> <td class="controls1" style="width: 112px">Account Number</td><td class="details" style="width: 100px"><? echo $rows2['account_account']; ?></td> </tr> <tr> <td class="controls1" style="width: 112px">Account Sort Code</td><td class="details" style="width: 100px"><? echo $rows2['account_sort']; ?></td> </tr> <tr> <td class="controls1" style="width: 112px">Account Valid From</td><td class="details" style="width: 100px"><? echo $rows2['account_valid']; ?></td> </tr> <tr> <td class="controls2" style="width: 112px; text-align: left;">Account Expires On</td><td class="details1" style="width: 100px"><? echo $rows2['account_expires']; ?></td> </tr> </table> <br/> <br/> <br/> <table> <tr><td><strong><span class="style34">If you are sure all of this information is correct please </span></strong> </td><td><input name="Submit1" type="submit" value="Pay for this item !" /></td></tr> </table> <? // close while loop } // close connection mysql_close(); ?>
  23. Does anyone know any free tutorials explaing how to control bidding on an auction site???? Thanks in advance
×
×
  • 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.