I am working in Dreamweaver with PHP MySQL. I inserted a record through 'Record Insertion Form Wizard'and when I ran the page through the web server, it is showing this error: Fatal error: Call to undefined function virtual() in /home/aircraft/public_html/Content Writing/coa/insertassignment.php on line 1 Have a look at the first few lines: <?php virtual('/Connections/connAircraft.php'); ?> <?php if (!function_exists("GetSQLValueString")) { function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { if (PHP_VERSION < 6) { $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue; } Now you will be surprised to know that I can see the records in the table when I am testing recordset by double clicking it in 'Bindings' and then clicking 'test'. So, this means it is connecting to the server through the same code, but when I am running the page, it is giving this error. I also replaced require_once and include in the place of virtual but then it is giving error. Someone please help me. Thank you. Regards, Manoj
Because, somewhere in forums I read that if I do that then it will work. Simple . What do you think of solution? How can we overcome this challenge?