I'm back in this error again. New project. Steps:
Server Behaviors > WA > MySQLI record set >
But when I see it in Bindings, there is nothing available to me to use. Same error message as above (Internal 500).
I updated to 107. Took out the older bindings on the page in question.
Inserted the display error code.
<?php ini_set("display_errors",1); ?>
<?php require_once('Connections/paco_i.php'); ?>
<?php require_once('webassist/mysqli/rsobj.php'); ?>
<?php
$news = new WA_MySQLi_RS("news",$paco_i,1);
$news->setQuery("SELECT * FROM news ORDER BY news_date DESC");
$news->execute();?>
<?php
$pagecopy = new WA_MySQLi_RS("pagecopy",$paco_i,1);
$pagecopy->setQuery("SELECT * FROM pagecopy WHERE pc_ID = 41");
$pagecopy->execute();
?>
But the page design is totally off in addition to the bindings not working.
I've redone a couple of times, hoping I had just missed a step. Any assistance most appreciated.