I have for some time been using Lotus approach as a frontend for a database that I created to hold my daily timesheets on. Access and Approach both have exellent tools to allow a user to make the form into pages that can be fliped through. on my back end php server I'm finding it difficult to well make things look the way I could in Approach. Are there any Visual type tools for setting up PHP pages to look a certain way? or would it be easier to run my MySQL server and create some other standalone app in C to connect to it? Any advise would be great.
Ugh... visual tools... Why do so many people want to degrade a complex language such as PHP into a click'n'drag thing.
Anyway, there are tools like 'Codecharge' and 'Qadram' (if you can get it to work) that will let you use a gui to create PHP pages, but in the end you are still writing a program, not 'creating a spreadsheet' like in access.
CAn any body send me record how to inseret record in php using MYSQL..i try several time but can't do that so any body plz help me regards sharjeel
I'm using this code, and still working fine, hope it helps.
$sql = "INSERT INTO table (field1, field2, field3) VALUES ('$var1', '$var2', '$var3')"; mysql_query($sql) or die ("Error msg defined by you");