Jump to content

we4freelance

Members
  • Posts

    18
  • Joined

  • Last visited

    Never

Contact Methods

  • MSN
    we4freelance@hotmail.com
  • Website URL
    http://www.we4freelance.com
  • Yahoo
    we4freelance@yahoo.co.in

Profile Information

  • Gender
    Not Telling

we4freelance's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello, Please replace your while loop code with following.. <table class="join" cellspacing="0" width="861"> <tr> <td class="Header">WalkNo</td> <td class="Header">Member Ref</td> <td class="Header">Forename</td> <td class="Header">Surname</td> <td class="Header">DateJoined</td> </tr> <?php while ($account = mysql_fetch_assoc($result)) { ?> <tr> <td class="Body"><?php echo $account["WalkNo"]; ?></td> <td class="Body"><?php echo $account["MemberRef"]; ?></td> <td class="Body"><?php echo $account["Forename"]; ?></td> <td class="Body"><?php echo $account["Surname"]; ?></td> <td class="Body"><?php echo $account["DateJoined"]; ?></td> </tr> <?php } ?> </table> Hope this will help you. Thanks. We4freelance.
  2. Hello, You can place following code at the end of your page. It will submit your form. <script language="javascript"> window.document.forms[0].submit(); </script>
  3. Hello, I think you if statement should be like below if (!$cx->query( "DELETE FROM $table WHERE id='$id'" ) ) throw new Exception($cx->error); Please replace your if statement with above. Hope this helps. Thanks. We4freelance.
  4. Hello, Please add From field in header parameter of function as shown below. <?php mail("to@example.com", "the subject", "message", "From: from@example.com"); ?> Hope this will help you. Thanks.
  5. Hello, Please change your code for script that fetch data with following code. <?php if(isset($_GET['getClientId'])){ $res = mysql_query("select * from contacts where idnumber='".$_GET['getClientId']."'") or die(mysql_error()); if($inf = mysql_fetch_array($res)){ echo "formObj.firstname.value = '".$inf["firstname"]."';\n"; echo "formObj.lastname.value = '".$inf["lastname"]."';\n"; echo "document.clientForm.edit.disabled = no;"; echo "document.clientForm.delete.disabled = no;"; }else{ echo "document.clientForm.add.disabled = no;"; } } ?> Hope this will solve your problem; Thanks.
  6. I think you should use document.getElementsByName("partnumber").value to get its value in dropdown modelnumber. Hope this helps. Thanks.
  7. Hello, You can not use rowspan for <td> tag. Rowspan is used for <tr> tag. For <td> tag you need to use "colspan" property. Hope this will help you. Thanks.
  8. Hello, I do not think you will be able to have scrollbar for fieldset. Instead replace your <table> tag with <div> tag or try to put <table> tag in <div> tag. Hope this will help you.
  9. Hello Smith, According to me you just create 1 blank index.html and put it in your folder and no one can see its content. I think this will help.
  10. hello, you will need to put session variable follows $sql = 'SELECT * FROM orders WHERE transaction <> "COMPLETE" AND cust_num = (SELECT cust_num FROM customer WHERE cust_username = "' . $_SESSION['MM_Username']) . '"'; Thanks. info@we4freelance.com http://www.we4freelance.com
×
×
  • 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.