I've got the following code (this is WordPress function) (example of wrong structure):
<?php paginate_comments_links('prev_text=← Older&next_text=Newer →'); ?>
Example of correct structure:
<?…
I am getting this warning, but the program still runs correctly.
The MySQL code is showing me a message in PHP:
Deprecated: mysql_connect(): The mysql extension is deprecated and
will be removed in the future: use mysqli or PDO …
I've got a problem:
I'm writing a new WebApp without a Framework.
In my index.php I'm using: require_once('load.php');
And in load.php I'm using require_once('class.php'); to load my class.php.
In my class.…