Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?php
  2. /*
  3. * Plugin Name: WordPress ShortCode
  4. * Description: Fules Plugin.
  5. * Version: 1.0
  6.  
  7. */
  8.  
  9. // Example 1 : WP Shortcode to display form on any page or post.
  10. function form_creation(){
  11.  
  12. global $wpdb;
  13. ?>
  14. <form>
  15.  
  16. Liters:<select>
  17. <?php
  18. $sql = 'SELECT liters FROM wp_tfp';
  19. $liters = $wpdb->get_col($sql);
  20.  
  21. if( $liters ) {
  22. foreach( $liters as $liter ) {
  23. echo '<option value="' . $liter . '">' . $liter . '</option>';
  24. }
  25. }
  26. ?>
  27. </select>
  28. Price: <input type="text" name="price"><br>
  29.  
  30. </form>
  31. <?php
  32. }
  33. add_shortcode('test', 'form_creation');
  34. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement