-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
|
||
$HTMLPage= <<<HTML | ||
**//INSERT HERE THE HTML CODE YOU ONLY WANT TO SHOW IF THE DROPDOWN MENU HAS BEEN CORRECTLY INSERTED:** | ||
<input type="submit" name="submit" value="Submit Form."/> | ||
<input type="reset" value="Reset Form" /> | ||
HTML; | ||
|
||
if($myDBObject = new mysqli("**SERVER_HOSTNAME**","**MySQL_USERNAME**","**MySQL_PASSWORD**")){ | ||
|
||
$myDBObject->select_db("DB_NAME"); | ||
|
||
if(!$queryResult = $myDBObject->query("SHOW COLUMNS FROM **tableName** WHERE Field=\"**columnName**\"")){ | ||
echo "<h2>There was an error while creating the page.</h2>"; | ||
}else{ | ||
if($queryResult->num_rows == 0){ | ||
echo "<h2>Check the table definition."; | ||
}else{ | ||
echo"<hr><br><h2>**Title**:</h2>"; | ||
$enumString = $queryResult->fetch_array()['Type']; | ||
$enumString = substr($enumString,6,strlen($enumString)-8); | ||
|
||
$enumString = str_replace('\'','',$enumString); | ||
$arrayEnumOptions = explode(',',$enumString); | ||
echo "<select name=\"**select_input_name**\" required>"; | ||
foreach($arrayEnumOptions as $singleOption){ | ||
echo "<option value=\"$singleOption\">$singleOption</option>"; | ||
} | ||
echo "</select>"; | ||
echo $HTMLPage; | ||
} | ||
} | ||
|
||
}else{ | ||
echo "<h2>There was an error while creating the page.</h2>"; | ||
} | ||
?> |