Jump to content

phpian

Members
  • Posts

    58
  • Joined

  • Last visited

    Never

Everything posted by phpian

  1. anybody got any ideas? any questions, please ask.
  2. move your foreach loop inside the table and make a new row for each element $body = "Robert. You have received these contact details .com:<br /><br />"; $body .= "<table>"; foreach($fields as $a => $b) { $body .= "<tr><th>" . $a . "</th><td>" . $_REQUEST[$a] . "</td></tr>"; } $Body .= "<tr>"; $Body .= "<td width=\"200px\">Member Name</td><td width=\"400px\"> $_POST['Member_Name'] </td>"; $Body .= "</tr><tr>"; $Body .= "<td>Members Contact Number</td><td> $_POST['telephone'] </td>"; $Body .= "</tr></table>";
  3. here's the exact headers i've used in a script that works: $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'FROM: "Your Name" <[email protected]>' . "\r\n"; may be it has something to do with that.
  4. mate, the code you supplied doesn't even relate to the output of the images on your page. I think in essence this is really a html problem not php. after looking at the source of the url, each image has a <br /> after it so of course they will go onto a new line. but even if you remove that, the text won't go underneath because it is in a <td> of it's own in the same row as the images. so start a new row and then display the text and it will go underneath the image.
  5. give this a shot mate. haven't tested it though. $from = '"Vegas D Sports" <[email protected]>'; $headers = "Content-Type: text/html; charset=\"iso-8859-1\""; $headers .= "Content-Transfer-Encoding: 7bit"; $headers .= 'From: ' . $from . "\r\n"; //options to send to cc+bcc $headers .= 'Cc: [email protected]' . "\r\n"; $headers .= 'Bcc: [email protected]' . "\r\n"; mail($to, $subject, $message, $headers);
  6. no probs
  7. your code is messy but i would suggest starting by removing table attribute for the td elements: <td background=\"http://www.walthamforest-fc.co.uk/stats/nextmatchleft.jpg\" ><img src=\"/stats/images/opponentlogo_$data[opp_id].jpg\"></TD> <td background=\"http://www.walthamforest-fc.co.uk/stats/nextmatchright.jpg\"><img src=\"/stats/comps/$data[opp_id].jpg\"></TD> and then set the width and height to the same size as the background images: <td background=\"http://www.walthamforest-fc.co.uk/stats/nextmatchleft.jpg\" width=\"150\" height=\"69\"><img src=\"/stats/images/opponentlogo_$data[opp_id].jpg\"></TD> <td background=\"http://www.walthamforest-fc.co.uk/stats/nextmatchright.jpg\" width=\"101\" height=\"69\"><img src=\"/stats/comps/$data[opp_id].jpg\"></TD>
  8. Hi there, Does anybody know how to include attriubutes when calling a .net webservice function from php? a normal function would go like this: $client = new SoapClient(wsdl, array('trace' => 1, 'encoding' => 'UTF-8', 'soap_version' => SOAP_1_1)); $params = array('name' => 'myname', 'address' => 'myaddress'); $client->__soapCall('setContact', array('parameters' => $params), array(), null, $outputHeaders); for a function like this: <setContact xmlns="xmlns"> <name>string</address> <address>string</address> </setContact> but how do i invoke a function for this: <setContact xmlns="xmlns"> <name title="title">string</address> <address>string</address> </setContact> so including the title attribute for name. Thanks in advance. This is driving me crazy!
×
×
  • 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.