trq
Staff Alumni-
Posts
30,999 -
Joined
-
Last visited
-
Days Won
26
Everything posted by trq
-
Do you have a question?
-
Yep, you seem completely lost. Have you tried reading the manual?
-
PHP is not executed as it comes out of a database. Nor is it a good idea to store code in a database if you want it executed.
-
Programs only do what you tell them to do. Your calling the alert method.
-
I would pull everything you need to change out and into a separate file. Then include that file into the file it is currently in. Once it's in a separate file it will be very easy to manipulate as it's just an array. <?php include 'somefile.php'; // manipulate the $users array all you need. file_put_contents('somefile.php', "<?php\n" . var_export($users)); ?>
-
Php + Mysql - Is There An Alternative To Load Data Infile?
trq replied to willothewisp's topic in PHP Coding Help
You should have full control of a vps. If you don't, move. -
Its just a single image (that doesn't even fill a widescreen monitor mind you). There is no "web design" to critique.
-
So your issue is with jQuery? This is the php help forum.
-
How do you expect us to help without a description of your problem?
-
Unexpected 'else' (T_Else) On Line 11 With Login Member System
trq replied to HeroSteve's topic in PHP Coding Help
Have a look at line 6. -
Is It A Common Practice To Use Orm In Web Applications?
trq replied to Hall of Famer's topic in Application Design
For smaller less complex applications ORM's are great. Once things start to get more complex however, I have found they just get in the way. They make the simple things even simpler and the complex things more complex IMO. -
Have you looked at the manual? date. It is surely quicker than asking here and waiting for a response.
-
I don't think so. I'm not a Zf user, but I don't recall anything like that existing in zf2.
-
http://laravel.com is the framework of the moment IMO. L4 is going to be rela nice, but v3 is solid. Codeignitor is not something I would ever consider sorry.
- 5 replies
-
- framework
- codeigniter
-
(and 1 more)
Tagged with:
-
What version of ZF have you downloaded, and what version does the tutorial refer to? I don't think there is a such a thing as zf.bat in the current versions.
-
Just use json_encode to format your data into a format that Javascript understands.
-
Awesome. You need to be a lot more specific I'm afraid.
-
Send Array Via Mail With Each Value In Separate Line
trq replied to phdphd's topic in PHP Coding Help
You will want to loop through your array and make a string from it. An array is a data structure, not something that can be simply emailed. -
id's are meant to be unique. Your question is not php related.
-
Move this: var total = 0; out of the function.