5
votes
6answers
959 views
PHP alias @ function
I'm new to PHP and I'm confused seeing some examples calling a function with a @ prefix like @mysql_ping().
What is it for? Googling / searching is not much of a help since @ gets discarded …
5
votes
10answers
2k views
Prevent direct access to a PHP page.
How do I prevent my users from accessing directly pages meant for ajax calls only?
Passing a key during ajax call seems like a solution, whereas access without the key will not be processed …
0
votes
3answers
332 views
PHP Static variable not working as expected
This example is from php.net:
<?php
function Test()
{
static $a = 0;
echo $a;
$a++;
}
?>
An …
3
votes
4answers
2k views
PHP: Right way to declare variable before use in loop
I have a variable that is built in loop. Something like:
$str = "";
for($i = 0; $i < 10; $i++) $str .= "something";
If $str = "" is ommitted, I get undefined va …
1
vote
4answers
490 views
Serial comm with PHP on Windows
Greetings all.
I am looking for a way to communicate with RS232 serial COM port on windows. I have found 2 solutions on the net, …
0
votes
3answers
310 views
PHP webserver connect to C# program on same server — What am I looking for?
So I have a webserver in which user can remotely control an external electronic board which due to certain conditions force me to put a desktop program using C# as the middle-man.
What is t …
0
votes
3answers
458 views
PHP: socket listen problem
Here is my code:
<?php
$host = "127.0.0.1";
$portListen = 1234;
$portSend = 1240;
// create socket
$sSender = socket_create(AF_INET, SOCK_STREAM, 0);
socket_connect($sSender, …
1
vote
Best PHP IDE for Linux / Gnome ?
I was on the quest of finding the best PHP+MySQL+HTML+AJAX IDE too last few weeks, and I ended up using Aptana (the free version). I use VIM a lo …
0
votes
PHP: socket listen problem
I see, after having a few hours sleep and re-analyzing my code and the documentations, I managed to fix everything. You guys are right, 1 socket is indeed enough and the correct way:
…
