0
votes
2answers
42 views
PHP, MYSQL, & RAM?
My computer:
Windows Vista Basic, Intel Core 2 Duo 2.8GHZ, 4GB memory. Task manager shows 1.61GB memory currently being used.
Currently I can insert anywhere from 10k to 15k rows (<1kb/row) per …
-3
votes
2answers
41 views
Is there a way I can disable copy/paste and printing of the PDF file generated using PHP?
Is there a way I can disable copy/paste and printing of the PDF file generated using PHP?
3
votes
2answers
22 views
PHP MYSQL - Insert into without using column names but with autoincrement field
Hi guys,
I've to insert a long form with 32 fields into a mysql table.
i'd like to do that something like this:
$sql="insert into tblname values (... 32 fields ...)";
Obviosly it works fine if …
3
votes
5answers
82 views
Is it a good practice to write subqueries in MySQL?
I am writing the following sub query for some project specific purpose:
SELECT count(*) from table1
WHERE userB='$p' AND userA IN
(SELECT userB FROM table1
WHERE userA='$row[username]')
I …
0
votes
2answers
29 views
MVC function - okay in the view?
I am upgrading my site from some old spaghetti coding to some nice, clean custom MVC structure (and having fun learning in the process).
On my page to display blog listings, I had a function that …
3
votes
2answers
44 views
Cannot connect to MySQL through PHP
Seems like a beginner question but I can't seem to figure it out ...
I have a fresh Windows 7 x64 / Apache 2.2 / PHP 5.2 / MySQL 5 x64 installation.
Actually I tried both IIS and Apache.
But this …
0
votes
3answers
56 views
Running background processes after a web request
I'm interested in kicking off processes after a web request, or possibly forking a new process after the initial thread is finished.
I would prefer not to use a cron, because of the nature of the the …
1
vote
3answers
41 views
Shortest path in a map
I have designed a weighted graph using a normalized adjacency list in mysql. Now I need to find the shortest path between two given nodes.
I have tried to use Dijkstra in php but I couldnt manage to …
0
votes
2answers
38 views
PHP Cannot write to file even though it has 777 permissions
Im trying to make a php file write to a file that resides in the same folder. Both the php file and the file its trying to write to have their permissions set to 777 (its a linux server) as well as …
1
vote
2answers
69 views
PHP, does “else” always get processed?
I have a rough program sketched thusly:
if (condition){
//redirect to some page
}
else{
echo $some_var;
}
So when I test is and the condition is true, it does the redirect, but also throws …
2
votes
2answers
24 views
PHP share objects across multple sessions
How can i have user A and user B has the same instance of an object? I guess this would be across two different sessions.
TIA.
0
votes
0answers
22 views
Installing libssh2 [closed]
Does anyone know how to install libssh2 into php on a windows environment?
1
vote
6answers
34 views
help with passing arguments to function
function get_tags_by_criteria($gender="%", $min_age_of_birth="%", $max_age_of_birth="%", $country="%", $region="%", $city="%", $tag="") {
when i just want to pass the tag argument and let the others …
1
vote
2answers
41 views
Regex to pull specific links out of RSS feed?
I have a Wordpress blog that parses RSS feeds using simplepie. The script I'm using to turn each feed item into a Wordpress post uses a %content% tag which pulls the feed's entire content block into …
3
votes
3answers
93 views
Why is it a good practice to remove PHP files from the htdocs directory?
Why is it a good practice to remove PHP files from the htdocs/public directory?
They are being parsed anyway, right?
