Jump to content

JhunVW

New Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by JhunVW

  1. Hi CyberRobot, Thanks for your immediate response. My apology, I failed to mention that I am sending the message thru SMS and not just printing it. Here's part of the codes: <?php $link_add = "<a href='http://www.yahoo.com'>here</a>"; $message = "If you want to continue this transaction, please click " . $link_add; $unicode = ""; $_objSmsProtocolGsm->Logfile = "C:\SMSMMSToolLog.txt"; //Clear the messageobject first $objMessage->Clear(); $objMessage->Clear(); if( $recipient == "" ) die("No recipient address filled in."); $objMessage->Recipient = $recipient; if( $unicode != "" ) $objMessage->Format = $objConstants->asMESSAGEFORMAT_UNICODE; $objMessage->Data = $message; $_objSmsProtocolGsm->Clear(); $_objSmsProtocolGsm->Device = $device; ... rest of codes work fine here! ? If you want to continue this transaction, please click <a href=http://www.yahoo.com>here <- this is the ouptut in my SMS. Best regards, Jhun
  2. Hello, Is it possible to store an <a href= > to a variable, like this: $link_add = "<a href='http://www.yahoo.com'>here</a>"; $message = "If you want to continue this transaction, please click " . $link_add; My output look like this: If you want to continue this transaction, please click <a href=http://www.yahoo.com>here instead of: If you want to continue this transaction, please click here I also tried this: $link_add = echo "<a href='http://www.yahoo.com'>here</a>"; still not correct. Please help. Thanks. Jhun
×
×
  • 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.