0
votes
PHP 4 and 5, Ctrl-C, system(), and child processes.
Instead of using system(), have a look at proc_open(), …
0
votes
Placing a PDF inside another PDF document with Zend_PDF
Not what you asked for, but probably what you need (:
Convert the smaller logo pdf to a TIFF/PNG/WhatEver (using, for example, imagemagick's convert, or the GIMP). Then, place …
0
votes
Multiple Data Tables in PHP/MySQL?
This should be possible with newer MySQL and the mysqli (improved) php extension.
I'm not sure if any DB abstraction layers support this.
See relevant …
0
votes
PHP PEAR Spreadsheet_Excel_Writer sending an empty file.
send() sends cache-control headers and content type headers, but not content.
The content is sendt, as I understand from the code, when $workbook->close() is called.
…
3
votes
How can I make sure a background image displays before the page loads?
If you have all content inside a container, you can probably come pretty close using this techique. It will also fail gracefully if javascript is disabled/unavailable.
So if you have to do …
0
votes
How to manage a simple PHP session using C++ cURL (libcurl)
A session in PHP has the purpose of preserving some state over several requests, since HTTP in itself is stateless. To get a session from PHP, simply request a php page that starts a session, and k …
1
vote
Remove repetitive, hard coded loops and conditions in PHP
This code can probably be cleaned up significantly, and pushed far in the direction of OO, without touching SPL.
SPL is only needed if you want to alter normal object behaviour in language …
0
votes
base64_encode weird behavior
Some issues:
From your comments elsewhere, I guess that the problem with the current code is that your database field is CHAR(40). A CHAR field always has a fixed size. Try changing …
1
vote
How do I sum up weighted arrays in PHP?
Depends on what you mean by elegant, of course.
function weigh(&$vals, $key, $weights) {
$sum = 0;
foreach($vals as $v)
$sum += $v*$weights[$key];
$vals = $s …
1
vote
Is there a difference between is_int() and ctype_digit()?
If you don't really care if the argument is a int type or a string with numbers, use is_numeric. It will return true for floats also, tho.
…
7
votes
The best way to read larges files in PHP?
You ought to be using fgetcsv() if possible.
Otherwise, there is always fgets().
…
3
votes
Creating a file inside a folder that doesn’t exist yet in php
if(!file_exists(dirname($file)))
mkdir(dirname($file), 0777, true);
//do stuff with $file.
Use the third parameter to mkd …
0
votes
php access to remote database
The error message means that you can contact the mySql server, but the user you are trying to log in as, does not have access.
Either the user does not have access at all, or it has access …
0
votes
How do I set an absolute include path in PHP?
The include_path setting works like $PATH in unix (there is a similar setting in Windows too).It contains multiple directory names, seperated by colons (:). When you include or require a file, thes …
1
vote
PHP and PEAR
For your personal computer, using the "pear" script that ships with most PHP distributions is a good idea.
For shared hosting, you can
Track your dependencies manually, and c …
