19 August 2019

How to add options in select html tag(Drowdown) from database in wordpress?

add options in select html tag(Drowdown) from database in wordpress


<label>Customer Name</label>
<select>
<?php
global $wpdb;

$result = $wpdb->get_results ( "SELECT * FROM wp_jaspreetsingh " );
foreach ( $result as $print ) 
{
echo"<option>$print->person_name</option>";
}
?>
</select>

No comments:

Post a Comment

How to download/create content in doc from website by adding code in chrome console?

 Download/Create content in doc from website by adding code in chrome console function exportHTMLtoDoc(elementId, fileName = 'document...