Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 20th, 2012  |  syntax: PHP  |  size: 0.49 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2.  
  3. echo' <entry sizen="10 5" style="TextValueSmall" name="inputValue"  posn="0 -50 0"/>
  4. <label posn="0 -20" style="CardButtonMedium" text="Send" manialink="Dakesi?value=inputValue" />
  5. ';
  6. // Lese den übertragenen Wert
  7. $value = $_GET['value'];
  8.  
  9. // Escape den Wert, um den ManiaLink sicher gegen Manipulation zu machen
  10. $value = htmlspecialchars($value);
  11.  
  12. echo "<label>$value</label>";
  13. echo "<label text='$value' />";
  14. echo '<label text="'.$value'" />';
  15. echo "<label text='".$value"' />";
  16. ?>