7
votes
2answers
587 views
PHP Script to populate MySQL tables
Is anyone aware of a script/class (preferably in PHP) that would parse a given MySQL table's structure and then fill it with x number of rows of random test data based on the field types? I have ne …
1
vote
PHP Script to populate MySQL tables
@Jarod Elliott:
Worked great for what I needed. Only
100 rows can be generated for free,
but you can also download and install
locally and generate whatever amount
y …
7
votes
How to Automatically Start a Download in PHP?
Send the following headers before outputting the file:
header("Content-Disposition: attachment; filename=\"" . basename($File) . "\"");
header("Content-Type: application/force-downl …
-3
votes
Best way to stop SQL Injection in PHP
I would say something like this in addition to mysql_real_escape_string():
<?php
// Quote variable to make safe
function quote_smart($value)
{
// Stripslashes
if (get_mag …
0
votes
One big SQL Select statement or several small ones (Performance)?
Be careful when dealing with a merge table however. It has been my experience that although a single join can be good in most situations, when merge tables are involved you can run into strange sit …
0
votes
0
votes
using PHP to rename files with spaces
Add a:
print "$file\n";
before the rename statement to see what you're getting.
Also, you should add a strstr($fname, ' ') to your if statement before addi …
0
votes
Yet Another world city auto complete field question
If you want to save the cost of going to the database all the time cache this data as a flat file in JSON format and load it via an AJAX request. Update the file from the db whenever it changes or …
0
votes
How do I alter array keys and values while using a RecursiveArrayIterator?
Could it come down to passing by reference vs passing by value?
For example try changing:
$cArray = new ArrayObject($aNestedArray);
to:
$cA …
5
votes
PHP ob_* from cronjob?
You probably need to use an absolute path on 'somefile.php'. It is probably getting created in the pwd of cron. Or you could do a chdir at the beginning of the script of in the cron statement.
…
0
votes
Some uploads fail in PHP
These are good things to check for problems like this: Common Pitfalls and the general …
1
vote
PHP: Fatal error after a form POST
Just a guess, but maybe it has something to do with the assignment operation inside the function:
array_push($search['subdivision'], $y = $i['subdivision']);
Try t …
0
votes
lastInsertId from a bulk insert?
If you used a datetime instead of just a date you could lookup the inserted id based on the user and the datetime values, but it is probably better so just not do a bulk insert if you need that dat …
