any 1 mak wmlphp code to html php

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    any 1 mak wmlphp code to html php

    this is wml code any mak plz in html
    Code:
    print '<b>To</b> Nick:<b>*</b><br/>'.
    '<input type="text" name="to'.$r.'" value="'.$to.'"/><br/>'.
    '<b>Subject:*</b> (25 chars)<br/>'.
    '<input type="text" name="subject" value="'.$subject.'" maxlength="50"/><br/>'.
    '<b>Message:*</b> (999 chars)<br/>'.
    '<input type="text" name="letter" value="'.$letter.'" maxlength="999"/><br/>'.
    '<anchor>[Send]<go href="send.php?id='.$id.'&amp;pass='.$pass.'" method="post">'.
    '<postfield name="to" value="$(to'.$r.')"/>'.
    '<postfield name="subject" value="$(subject)"/>'.
    '<postfield name="letter" value="$(letter)"/>'.
    '<postfield name="room" value="'.$room.'"/>'.
    '</go></anchor><br/>';

    #2
    Code:
    print '<form action="send.php?id='. $id .'&amp;pass='. $pass .'" method="post">'.
          '<div><b>To</b> Nick:<b>*</b></div>'.
          '<div><input type="text" name="to'.$r.'" value="'.$to.'"/></div>'.
          '<div><b>Subject:*</b> (25 chars)</div>'.
          '<div><input type="text" name="subject" value="'.$subject.'" maxlength="50"/></div>'.
          '<div><b>Message:*</b> (999 chars)</div>'.
          '<div><textarea name="letter" rows="5">'.$letter.'</textarea></div>'.
          '<input type="hidden" name="room" value="'. $room .'" />'.
          '<div><input type="submit" value="[Send]" /></div>'.
          '</form>';
    do note that passing password value in your url query string is not secure
    Last edited by xor; 18.05.14, 18:16.

    Comment


    • irshad99
      irshad99 commented
      Editing a comment
      bro i got notification Message has been Sent to ! but msg not get to user why?

    #3
    Originally posted by xor View Post
    Code:
    print '<form action="send.php?id='. $id .'&amp;pass='. $pass .'" method="post">'.
    '<div><b>To</b> Nick:<b>*</b></div>'.
    '<div><input type="text" name="to'.$r.'" value="'.$to.'"/></div>'.
    '<div><b>Subject:*</b> (25 chars)</div>'.
    '<div><input type="text" name="subject" value="'.$subject.'" maxlength="50"/></div>'.
    '<div><b>Message:*</b> (999 chars)</div>'.
    '<div><textarea name="letter" rows="5">'.$letter.'</textarea></div>'.
    '<input type="hidden" name="room" value="'. $room .'" />'.
    '<div><input type="submit" value="[Send]" /></div>'.
    '</form>';
    do note that passing password value in your url query string is not secure


    thanks brother

    Comment


    • irshad99
      irshad99 commented
      Editing a comment
      thankls its working bro thank u very much
Working...
X