Hello,
in what form do you need to enter them? I really don't understand... It seems like you need a different table for the pkgoptions, I really don't know how you want the different packages to be entered...
Also, there is no way to use phpmyadmin for it. You need to learn how to use PHP for MySQL.
Connection:
mysql_connect($host,$username,$password); Database selection:
mysql_select_db($database); Querying:
$result = mysql_query($query);
More about MySQL in PHP: http://www.php.net/mysql
Well, assuming you want to enter them into the field pkg_options just as they are in the file, with | signs seperating them...
<?php
if(@mysql_query("UPDATE table_name SET pkg_options='".implode(file("pkgoptions.txt"),"|")."' WHERE Ihavenoidea='alsoIhavenoidea';")) {
echo "Success!";
}
else {
echo "Failure! Error is: ".mysql_query();
}
?>
I really don't understand why you are making this a field, and not a column.
Anyhow, I hope this helps you.
If not, write otherwise.
Happy Jewish New Year!
Shaffer.