
bd1e0d0
Members-
Content Count
27 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout bd1e0d0
-
Rank
Newbie
- Birthday 12/30/1988
Contact Methods
-
Website URL
http://
-
ICQ
0
Profile Information
-
Location
69.244.40.60
-
Interests
You're asking ME???
-
You can have JavaScript on VBScript on the same page?
-
I got WAMP (PHP+MySQL+Apache [i got sick of IIS]) and it came with PHP My Admin. What is this?
-
I believe the best way to go is by MySQL and sessions. So I have no clue. Do your homework on those and you should get what you need .
-
if($handle=opendir('.')) { while(false!==($file=readdir($handle))) { if($file!=".") { echo("$file<br />"); } } closedir($handle);} I think I'm using a generic file lister, ergo I think I'm screwed. Is there anyway through this script that I can make all the directories (folders) list first? If not, can anyone tell me a script that can?
-
Nah, I just put that put there as what I liked. ASP and PHP are, like, the dominant server-side languages. CGI is dying ...
-
If you mean JavaScript alert, try this: <html> <body onLoad="alert(document.getElementById("text").value);"> <input type="hidden" id="text" value="<?php echo($_POST['your_var_here']); ?>" /> </body></html>
-
Ask an admin or a mod to clean it up, that's all I can think of.
-
If you meant to check the code, I can't from the site itself. You need to email the page or something to get at the PHP script. Also, PHP is increadibly easy, you could learn the basics in less than 5 minutes, tops, here: http://www.w3schools.com/php/php_syntax.asp.
-
It's staring you right in the face! Your form was set to POST, and your variable was set to $_REQUEST. Use $_POST to get the variable. But if you wanted to use $_REQUEST, set the form to GET. Here (fixed up some of the XHTML for ya, too, also got rid of the comments beacuse I knew you put them there for this board):HTML File: <html> <head> <title>What’s your name?</title> </head> <body> <h1>What’s your name?</h1> <h3>Writing a form for user input</h3> <form method="post" action="/hiUser.php"> P
-
Or if you have XP Pro, you could install IIS then PHP. IIS also comes with ASP. I find I really don't need that other stuff. PHP, ASP, and ColdFusion are what I like.
-
Hope you got it as "\n."<?php echo("<textarea>Hello.\nHow are you?</textarea>");
-
I kinda sorta knew how to make the Google search anyway. Although it's more simple to do this:<html> <head> <script language="JavaScript" type="text/javascript"> function gsearchme() { window.location="http://www.google.com/search?q=" + document.forms.google.q.value + " site:http://my.web.page/"; } </script> </head> <body> <form name="google" action="javascript:gsearchme();" method="get"> <label for="q">Google</label> <input type="
-
I don't do sessions, I view them the same as cookies. They're stupid and I hate them. [i actually don't know hoe to do them, heh heh ... ]