How can i follow for example this *.phtml file? there is no instantiation of a class but uses '$this' so how can i know what object this is? you can understand my conversion, when i used c++ years ago, the include to an object was added at the top of the page so you had some idea where to look...
I will add to existing see what i can find, is there anyway of finding the class associated to "$this" at that point? "$this" is used all over this project with no real clue to what object it actually is, is that bad practice?
I thought so, trouble is, I cannot find "loggedInUser" anywhere declared other than like the above, its not a function, it looks like part of an array, how could I search for it to see how its contructed
My problem is I have theme files extension .phtml using code within the file and no include classes at the top of the page and the use of the word $this in the file so I have no reference has to what object it is?
Fatal error: Using $this when not in object context
if...
how do I fix these warnings?
Warning: strtotime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most...
Sorry, this code, index runs the code below, where does it go from here, tiny lesson would be helpful, ive seen some php but this project is very difficult to follow
namespace Cube;
use Cube\Loader\Autoloader;
class Application
{
/**
*
* the name of the module bootstrap files...
After this call... where does this go? and if someone clicked a link that didnt run index.php how would it run bootstrap?
ini_set('display_errors', 1);
error_reporting(E_ALL);
define('APPLICATION_PATH', realpath(__DIR__));
set_include_path(APPLICATION_PATH . DIRECTORY_SEPARATOR . 'library')...
It is and this is working for clarification
$pdo = new Pdo('mysql:dbname=badbidder1;host=localhost', $username, $password);
//get the import number that is left and id
$stmt = $pdo->query("SELECT id,importsNumber FROM `bad_users` where username ='carquest'");
while ($row = $stmt->fetch())
{...
I'm not sure if PDO is built in PHP so are there any includes required top of a page to run a query?
$stmt = $pdo->query("SELECT id,importsNumber FROM table");
This give me error - Undefined variable: pdo
I see, its very hard to follow, i have my own import code, all i need is the connection to db and execute methods but its ny on impossible to find. Even in the view folders wrapped in html with extension .phtml is the use of $this-> outside its class, there are no includes in any file so i'm...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.