To be honest, I can't actually see a problem with your PHP coding (although maybe I'm just missing something simple).
Only thing that I can see is the header, which should use an absolute URI.
...
Type: Posts; User: Odin; Keyword(s):
To be honest, I can't actually see a problem with your PHP coding (although maybe I'm just missing something simple).
Only thing that I can see is the header, which should use an absolute URI.
...
$tr_num = $_REQUEST['tr_num'];Be careful when you use variables like this in SQL queries, they can be vulnerable to SQL injection attacks (to find out more google it). If your server has magic quotes...
Here are a couple of tutorials that should help:
http://www.phpfreaks.com/tutorials/73/0.php
http://www.phpfreaks.com/tutorials/43/0.php
Are you getting a parse error? If so, the line:
$txtto="info@vag.co.za"
is missing the semi-colon at the end and the switch statement is unterminated.
In case those are just from cutting the...
Apparently Apache Tomcat is a servlet that you need to install on your server. I don't think its primary use is directory listing and I guess those scripts are ones automatically generated for use by...
Can't really tell you if there's a problem in your code unless I can see the tools page on 0Catch, but I can't find it, probably because it's members only.
www.response-o-matic.com was recommended...
Er, sorry if I gave you the wrong impression, I could've worded that better.
GoDaddy will let you forward to gerryhyh.f2s.com/paul/content via, eg: www.pctresearch.com. However if you went to...
If you get a domain you may as well leave out the r8.org short URL, and point it straight at your host, so it will do exactly what your r8.org is currently doing - loading an initial frameset in...
For £9/month I'd want a semi-dedicated server, with the domain thrown in for free :)
If you want a .com try GoDaddy, they charge $8.95/yr for .coms and .nets, so, if you don't mind the conversion,...
http://www.dynamicdrive.com/favicon/
$order = array(14.54, 49.25, 12.45, 14.25);
function multiply(&$number){
$number = ($number * 0.675);
}
array_walk($order, 'multiply');
You need to upload your files to a web server, so that other people can access them. To do this you'll need to register with a web host. There are many free hosts which will help you start out, and...
Well I checked your site and the popup worked for me, using Firefox. I also tried in IE and it worked. The only problem I see is that 2 of your links (Math Trick, What's Your Sign?) have a semi-colon...
The function is case sensitive, you need to use either Openpopup or openpopup, in both sections.
Right, I think I know what you mean. I can't think of an easy way to do it, or any easy way to pass the parameter, other than using the query string. This would be very easy in PHP, but in case you...
If you're using a frameset with page1 and page2, just use:
<a href="page3.html" target="[frame name]">(Link name)</a>
in page1, replacing [frame name] with the name of the frame page2 is in.
Not too sure about the blank source codes but, as creative said, people will always be able to read your source code. If you're still unhappy about this though, you can try using this script. It...
onfocus="this.blur()" depends really on the browser. If you're using IE, the link won't be able to get an active state and won't show the colour, so you have to pick one or the other. Firefox just...
You can use CSS well here, just put this in your <head> section:
<style type="text/css">
a:link
{ color: #0000FF; text-decoration: none }
a:active
{ color: #0000FF; text-decoration: none }...
Use <a name="location">[Text, if any]</a> within the desired page.
Ok, change:
$info = (empty($_REQUEST['name'])) ? 'Unknown User' : $_REQUEST['name'].' '.$ip;
$log = $CurrentDate.' '.$info."<br />\n".$contents;
To:
$user = (empty($_REQUEST['name'])) ?...
Are you entering the page from another page?
Yeah, it worked for me. If it's displaying the raw script maybe you missed the <script language="Javascript1.2"> and </script> tags? If not, try posting the URL.
Sorry, I changed the script quite a bit, hopefully you can still see what it's doing. Also I added the date into the log seen as it wasn't doing anything, and changed the writing for an unknown user,...
I'm not an expert so there may be something I missed, but try this.
The colour variables are in the javascript for you to edit, the only other thing you'll need to change is the CSS classes - make...