473,398 Members | 2,427 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

Objects in PHP

Im using objects in PHP for the first time and have a question about
the following script.

$new_grad = new graduate();
$new_grad->set_fn($_SESSION['first_name']);
$new_grad->set_sn($_SESSION['surname']);
$new_grad->set_username($_SESSION['username']);
$new_grad->set_password($_SESSION['password']);
//etc

The sript is used to set up user accounts when they sign up for my
system.
HOWEVER I am concerned about the following scenario. Say if two or
more users are setting up accounts at roughly the same time.
The first person presses 'submit' so

$new_grad = new graduate();

gets executed.
But if a second or so later another person presses submit the same
line of code will get executed so we will either have two objects with
the same name or the second object will replace the first.
Neither of which is desirable so how could I avoid this?
Jul 17 '05 #1
5 1896
David wrote:
The first person presses 'submit' so

$new_grad = new graduate();

gets executed.
But if a second or so later another person presses submit the same
line of code will get executed so we will either have two objects with
the same name or the second object will replace the first.
Neither of which is desirable so how could I avoid this?


Each person gets 'his' own php.
Imagine each object name is prefixed with the access id.

For the first person php creates person1.new_grad
and then for the second it creates person2.new_grad

When you do <?php $new_grad->save(); ?> it's like you knew which person
was accessing at that time and the same as
<?php $person<whatever>.new_grad->save(); ?>

In short, don't worry about that :)

It's just the same for objects as for 'normal' variables ... have you
worried about that for 'normal' variables before?
--
--= my mail box only accepts =--
--= Content-Type: text/plain =--
--= Size below 10001 bytes =--
Jul 17 '05 #2
Thanks a lot, I had a feeling (hoping:-) it was something like that,
just had a sudden panic thats all when I thought everything would
crash due to my lack of knowledge for objects!
Each person gets 'his' own php.
Imagine each object name is prefixed with the access id.

For the first person php creates person1.new_grad
and then for the second it creates person2.new_grad

When you do <?php $new_grad->save(); ?> it's like you knew which person
was accessing at that time and the same as
<?php $person<whatever>.new_grad->save(); ?>

In short, don't worry about that :)

It's just the same for objects as for 'normal' variables ... have you
worried about that for 'normal' variables before?

Jul 17 '05 #3
*** David wrote/escribió (8 Jan 2004 08:08:08 -0800):
But if a second or so later another person presses submit the same
line of code will get executed so we will either have two objects with
the same name or the second object will replace the first.
Neither of which is desirable so how could I avoid this?


<?
echo $name;
$name='John';
?>

Open several browser Windows and execute the script as many times as you
want. Will you ever get 'John' printed? With objects it's just the same.
--
--
-- Álvaro G. Vicario - Burgos, Spain
--
Jul 17 '05 #4
David wrote:
Thanks a lot, I had a feeling (hoping:-) it was something like that,
just had a sudden panic thats all when I thought everything would
crash due to my lack of knowledge for objects!


Don't Panic, get the Hitch Hikers Guide To The Galaxy pronto at your local
bookstore.
Jul 17 '05 #5
Erwin Moller wrote:
David wrote:

Thanks a lot, I had a feeling (hoping:-) it was something like that,
just had a sudden panic thats all when I thought everything would
crash due to my lack of knowledge for objects!

Don't Panic, get the Hitch Hikers Guide To The Galaxy pronto at your local
bookstore.

Don't just get the first book, get the whole series! There's a nice
edition that has all the books bound in one. 'tis cheaper than buying
them individually. =)

Regards,

- Dan
http://www.dantripp.com/
Jul 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: dasod | last post by:
I would like to know if my method to remove list objects is correct in this small test program. It seems to me that there might be a simplier way, but I'm afraid I don't know enough about list...
9
by: Aguilar, James | last post by:
Hey guys. A new question: I want to use an STL libarary to hold a bunch of objects I create. Actually, it will hold references to the objects, but that's beside the point, for the most part. ...
6
by: Alfonso Morra | last post by:
I have written the following code, to test the concept of storing objects in a vector. I encounter two run time errors: 1). myClass gets destructed when pushed onto the vector 2). Prog throws a...
3
by: ytrewq | last post by:
Should dynamic ("expando") properties be restricted to native and user-defined objects? Or should host objects - such as references to the browser or a plug-in or to the document and its elements -...
8
by: Lüpher Cypher | last post by:
Hi, Suppose we have a hierarchical class structure that looks something like this: Object | +-- Main | +-- Object1
161
by: KraftDiner | last post by:
I was under the assumption that everything in python was a refrence... so if I code this: lst = for i in lst: if i==2: i = 4 print lst I though the contents of lst would be modified.....
7
by: Jo | last post by:
Hi, How can i differentiate between static and dynamic allocated objects? For example: void SomeFunction1() { CObject *objectp = new CObject; CObject object;
21
by: George Exarchakos | last post by:
Hi everyone, I'd like your help... Can we have a std::list<BASEwhere BASE be the base class of a class hierarchy? I want to add to this list objects that are inherited from BASE class but not...
27
by: SasQ | last post by:
Hello. I wonder if literal constants are objects, or they're only "naked" values not contained in any object? I have read that literal constants may not to be allocated by the compiler. If the...
14
by: Jess | last post by:
Hello, I learned that there are five kinds of static objects, namely 1. global objects 2. object defined in namespace scope 3. object declared static instead classes 4. objects declared...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.