Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Forums

5 Posted Topics

Member Avatar for karthik_ppts

PHP is not actually meant for reading from devices, other than host configurations and responses from web users. If you would like to read from a port, you would probably need to use another programming language. Other programming langugages usually have the capability to communicate with mysql.

Member Avatar for karthik_ppts
0
1K
Member Avatar for bjeffries
Member Avatar for rohittripathi

You will need to add javascript to the form in order for that action to happen. Add this javascript:- [CODE] <script language="javascript" type="text/javascript"> function hidetext() { document.designation.style.visibility = "hidden"; } function showtext() { document.designation.style.visibility = "visible"; } </script> [/CODE] Then in your html, change:- [CODE]<select name="select" > <option value="0">Select any …

Member Avatar for vibhaJ
0
3K
Member Avatar for rajesanthu
Member Avatar for mingler

I have a problem with using globals within class scope. For example: [ICODE] $GLOBALS['test'] = "How are you?"; class great { [INDENT]function grace() { [INDENT] echo $test; echo $GLOBALS['test']; [/INDENT]} [/INDENT]} [/ICODE] Problem is, that neither of the echos produce any output. Is there a problem with accessing superglobals from …

Member Avatar for mingler
0
155

The End.