2
votes
What HTTP header to use for setting form field names (multipart/form-data)
The Content-Disposition header has a name argument that has the control name. There should be one after each --sub_boundary
--sub_boundary
Content-Disposition: form-data; name="myc …
7
votes
PHP Optimization Tips
If this is for a static environment, such as a web server module or using FastCGI, use an opcode cache. That way, each file is only compiled once (or whenever it is updated on disk). …
2
votes
How can I parse Apache’s error log in PHP?
There are a few things to consider first:
Firstly, your PHP user may not have access to Apache's log files.
Secondly, PHP and Apache aren't going to tell you where said log f …
0
votes
What’s quicker; including another file or querying a MySQL database in PHP?
If you expect the number of terms to become larger at a later date, you're better off using MySQL with a fulltex …
0
votes
What PHP / MySQL drivers or Database Abstraction Layers Support Prepared Statements?
ADODB supports prepared statements.
…
3
votes
What’s a good templating system for PHP?
To follow up on what Alex said, I suggest taking a look at Rasmus Lerdorf's article The no-frame …
0
votes
PHP mangles my dates
If you have issues with what jcoby said above, the strptime() command gives you more control by allowing you to specify the format as well. …
-1
votes
Empty string in not-null column in MySQL?
I'm confused. It looks like you're using mysqli OO (from the tags and style), but the syntax is different than the manual …
2
votes
Can I tell Apache to do an internal redirect from PHP?
virtual() may do what you want. I'm not sure, I've never tried it.
Note that include() and require() will work if you're just callin …
1
vote
duplicate tags in nusoap
The problem is with the inner array()
$test_array = array("item" => "value 1", "item" => "value 2");
creates an array with a single key ("item").
Try …
0
votes
PHP session problem *only in IE* *(??? really strange problem)
Session data is stored on the server side, not the client. I would check the other pages, where this value would be set.
…
0
votes
showing related data from mysql in ajax
If you were using mysqli, I'd suggest using mysqli_prepare and …
1
vote
Should a beginning PHP programmer consider frameworks?
Frameworks can abstract much of the language's complexity away from you, but at some point, you're going to run into something that requires you to know the language's control structures and standa …
1
vote
Includes: SSI or PHP for basic HTML and Javascript in separate files
I don't know if Xampp has a special way of activating SSI or not, but the normal Apache way should work. …
1
vote
What does this Regular Expression do
...?
Actually, it looks like this takes the first <p> tag and prepends the previous regular expression's first match to it (since there's no match in this one),
H …
