Hi,
have you tried xammp?
Herb
Type: Posts; User: Herb
Hi,
have you tried xammp?
Herb
Mosty likely you don't have the appropriate codecs installed (on the receiving computer). I seem to remember that's what happens when you open a DivX-encoded AVI file and you don't have the DivX...
Hi,
this tutorial should help.
Basically you need to call request.getParameter ("web") and request.getParameter ("database") (where "request" is the name you gave to doGet's HttpServletRequest...
Try adding
use CGI::Carp qw/fatalsToBrowser/; near the top of the script. You might get meaningful error messages.
Herb
I was a bit confused by your wording -- are you looking for Java or JavaScript programmers? It sounds like you're talking about JavaScript, but your app seems more suited for Java, and you seem to...
Hi,
you're doing good!
First you should replace the = signs, which are for assignations (as in var num = 1) with == signs, which are for comparisons, as in if (base == word)
Second, you can...
Hi,
what you actually need is if/else statements :
var otherpages = new Array ("accessories", "ordering", "contactus", "stockists", "e-mailus", "links", "reviewcart");
for (i=0; i <...
Hello sSoft,
welcome to the forums :)
This piece of code should do the trick :
if (window != top) {
// if you get here it means you're inside frames
// as an example, this will...
Hi,
I you have phpMyAdmin installed (most hosts I've seen do), select the table where you want to upload your records and then go to the "import" tab. phpMyAdmin will parse the CSV file and insert...
Hi frozen,
welcome to the forums :)
could you show us the line of code where you call sndrec32 ?
Herb
Hi,
What you're looking for is called the "referer" (sic) in HTTP-speak. I've never used JSP, but this Google search brings interesting results, for instance this one.
Note that while the...
Hi khanraj,
these symptons indicate that your Apache server is not properly configured.
Are you renting space on a commercial server ? If so, the fastest way to solve your problem will probably...
I'm no JavaScript guru, but I'd say option #2 is the best, because it's the only one that attaches the function to the class (prototype) rather than to the object itself. Options 1, 3 and 4 will give...
Hello Comrade,
I can't actually compile and try the code because I don't have Java 1.5, but it seems like an odd problem. You're saying that this line
System.out.println("Directory:...
Actually if the image is within the <form> ... </form> tags, you don't even need JavaScript, as this should work :
<input type="image" src="../images/icon_pm_remove.gif" alt="" />
Herb
Wow, programming a Minesweeper clone seems to be a popular hobby! I wrote my own version a few years ago, here it is:
http://www.saintamh.org/archive/software/mines/index.shtml.en
Looking...
That error message is caused by a "\x" in your string.
You have to escape the backslashes before printing the string to the JavaScript or HTML file. As far as I know, there's no way of writing...
Well, that's what it is. JavaScript displays the client's date and time, wherever he/she is.
Oh, and Java is not the same as JavaScript. This is JavaScript.
Herb
Hi,
I don't understand your question; I mean, the code you posted works, doesn't it? (works for me, anyway).
If what you're asking is how to print it the date to the page instead of popping it...
Wow, that's odd. Is your website heavy on JavaScript ? Maybe there's some piece of code that's more demanding for IE6... but really that's weird.
Anyone else have a suggestion ? I'm puzzled.
...
But is it only your website that's slow, or is IE slow in general ?
Herb
For me it's quite straightforward, really, I have a control panel that has easy steps where you enter the subdomain, click "OK", and boom, you have a subdomain. Same for FTP accounts.
Herb
Hi Geoserv,
I guess you should ask your web host. With mine I have a control panel that allows me to easily set up subdomains that redirect to subfolders of my site (eg someone.mydomain.com is...
Hi Geoserv,
welcome to our forums :)
Try inserting this code on line 281 in the script (just before the line that says if($isUNIX)) :
$message .= "\n" .
"Name: " . $GET->param ('name')...
Didn't they come on a CD with your book ?