1
vote
6answers
71 views
PDF file compression
I have a requirement to dynamically generate and compress large batches of PDF files.
I am considering the usual algorithms
Zip
Ace
Rar
Any ot …
2
votes
PHP MySQL Search And Order By Relevancy
take a look at the MySQL FULLTEXT search functions,
These should automatically return results by relevancy, …
1
vote
How to get multiple parameters with same name from a URL in PHP
AFAIK there is no way to get duplicate values using $_GET as the second value will overwrite the first
To get around it you could access the raw querystring using $_SERVER['QUERY_STRING'] a …
0
votes
How can I send html mails with included CSS with PHPmailer?
How is your stylesheet referenced?
For email you will either have to provide an absolute path to your stylesheet or include the styles in the head of the template
…
5
votes
Which IDE is for me?
Eclipse PDT should meet all of your requirements, plus there are plugins for most other functions you may need.
…
3
votes
PHP to store images in mysql or not?
We created a shop that stored images in the DB. It worked great during development but once we tested it on the production servers the page load time was far too high, and it added unneccessary loa …
5
votes
Which is the best PDF library for PHP?
FPDF is functional enough and it can be extended easily.
DOMPDF is fine for basic HTML to PDF generation, I've used it with Smarty and it works well enough, but has some nasty bugs with tab …
0
votes
Change input from all upper case into a normal case
If the string contains only 1 sentence then you could use:
$string = ucfirst(strtolower($string));
…
1
vote
$_SESSION variables not transferring from page to page
Ensure that the PHPSESSID cookie is actually being set, and that no headers / content have been sent before you call session_start()
…
0
votes
Opening, Rotating, and Storing Tiff Images In a MySQL Database Blob Column
SELECT the data from your DB. Pass the data into imagecreatefromstring
You will now have an imag …
0
votes
Convert to dd/mmm/yyyy
You can actually get mySQL to convert the date to a unix timestamp
SELECT UNIX_TIMESTAMP(field) as date_field
FROM table
Then you can pass that straight into PHPs …
0
votes
Detect when MySQL tables are in readlock state (from PHP)
After checking the docs there doesn't appear to be a way of doing this through PHP's mysql C API
You can review detected deadlocks by running "SHOW ENGINE [EngineName] STATUS" replacing eng …
0
votes
make select box values faded out/unclickable
There is a javascript solution here
http://www.lattimore.id.au/2005/07/01/ …
