Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. function signal_adder_form(){
  2. form_css();
  3. form_dpicker();
  4. if(isset($_POST['submit'])){
  5. $da=$_POST['to'];
  6. $our_date = str_replace( "/", "-", $da);
  7. }
  8. echo '<div class="signali">';
  9. echo '<h1>Add Signal</h1>';
  10. echo '<form id="form2" name="form2" method="post" action="">';
  11. echo ' <div class="text">Select Currency</div>';
  12. echo '<div class="itemi"> ';
  13. echo ' <div class="labeli"><label for="cur1">From</label></div>';
  14. echo '<div class="inputis" class="small"><select name="cur1" id="cur1">';
  15. list_of_currency();
  16. echo '</select></div>';
  17. echo '<div class="labeli"><label for="cur2">To Which</label></div>';
  18. echo '<div class="inputis"><select name="cur2" id="cur2">';
  19. list_of_currency();
  20. echo '</select></div>';
  21. echo '<div class="clear"></div>';
  22. echo '</div>';
  23. echo '<div class="text">Date</div>';
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement