Iam new to PHP, I have experience in C/C++. I have the following doubt:
In C or C++ 1) function variables are stored on stack. 2) Global and Static variables are stored on data segment(.bss segment). 3) Register variables are stored in Register 4) program instructions get stored in code segment 5) The memory created dynamically are stored in Heap.
What i want to know is, does above mentioned points are true also for "PHP"....
Search Result
Collapse
3 results in 0.0038 seconds.
Keywords
Members
Tags
-
Recursive stored procedure
Hi all,
I need your help.
I'm creating a program to display the circuit of Bus by city and stop.
This is my example and i don't know how to do it:
I have 3 differents circuits of bus and each circuit can have one or multiple transfer to another circuit.
So let's say i'm looking for a trajet from City1/Stop1 (source) To City3/Stop11(destinat ion)
Here's the scenario:... -
Where do I place a stored procedure?
Hello all. Sorry if the question is an obvious one, but I have a stored procedure as follows:
[CODE]
CREATE PROCEDURE USPAddToyRecord
@strToyName varchar(50) ,
@strToyCode varchar(6) ,
@intToyId int out
AS
BEGIN
SET NOCOUNT ON;
INSERT INTO tblToy (strToyNameTO,s trToyCodeTO,) VALUES
(@strToyName,@s trToyCode)
SELECT @intToyId = @@IDENTITY
END
...