Search:
Type: Posts; User: BIOSTALL
Search :
Search took 0.01 seconds.
Hi nsath,
I experienced the same thing before and wrote about it on my blog. Sounds like it could be similar. You can find the solution here:
...
The error tells you where the problem lies:
in C:\xampp\htdocs\del.php on line 19
It's your use of quotes. You need to either surround the string with single quotes or escape the double quotes:...
Hi Ordog,
Could you pass it as a parameter to the JavaScript function like so:
<a href="javascript:loadVideo('link1');" id="video" class="link1" onClick="parent.location='#top'">name of...
Hi sjrei5,
Try changing your query to this:
$query ="UPDATE `content` SET `contentTitle`='".$_POST['contentTitle']."' WHERE `contentID`='".$_GET["contentID"]."'";
I think your...
The best way that I can see would be to convert it to lower case and search for that. For example:
var onHomePage = (location.pathname == "/") ||...
Couple of thoughts:
1) You're got <br /> tags between your closing and opening <li> tags. This is invalid HTML.
2) You're escaping single quotes with a backslash when there is no need ne because...
Hey caesar2011.
Not sure about the first link but the vtech site uses CU3ER found here:
http://getcu3er.com/
They have both Flash and JS versions available.
Hope that helps
Hi there,
Firstly I can't see where you're outputting any 'tr' tags :-S Or have these been left out the example on purpose?
I also have reason to believe that the following line is not...
This should help:
http://www.google.com/support/webmasters/bin/answer.py?answer=47334
:)
Hey Brolin,
The plugin is jCarousel Lite which can be obtained here:
http://gmarwaha.com/jquery/jcarousellite/
Hi Andrew,
Your probably best doing this at the MySQL level aren't you in the original query? For example:
SELECT `productName`, `productURL` FROM `product` WHERE `productName` LIKE '%XYZ%'...
Hi Chris,
Are you using a .htaccess by any chance to rewrite your URL's. If so I wrote a post a while back that sounds similar which you can find below:
...
In the past I've redirected to another page first. For example:
On the page with the ad:
<a href="redirect.php?url=http%3A%2F%2Fwww.other-site.com"><img src="path"></a>
Then in...
Do you have a sample of the form that is being submitted? :)
Thanks
On your opening <body> tag could you add onload="startstop();"? So the code will look like so:
<body onload="startstop();">
Hope that helps
Hi LSWD,
When you say you've tried using 'taregt', I trust you actually mean 'target'? Also I presume you are giving the iFrame the same name as you are specifying when using the 'target'...
Hi Nathan,
Are you using the jQuery UI to perform the draggable instances? If so there is a disableSelection() function that may be of use.
Aside from that, I'm afraid i'm not sure.
Good...
Not entirely sure I understand what you mean by a 'copy'. Do you mean you would like the users entered information to be emailed to you or stored somewhere for you to view?
If so, you will need to...
Hi Funnybone. Can you not just link directly to the .mp3 file?
<a href="sample.mp3">Download Track</a>
Or:
<form action="sample.mp3">
<input type="submit" value="Download Track" />
Is 'width:100%-160px;' even valid CSS? I've never seen this in my eight years of development :-P Could be where the issue lies
What are expecting? A string? $image in your script contains the resultset (a resource) of the query you're running.
It's not an error in anyway. Your script is outputting exactly what you are...
What about this:
if (!$d = file_get_contents($url)) {
return false;
}
Or turn error reporting off ;) haha
Hi klamerus. Try something like so:
HTML:
<div id="foo">
<div id="prevbtndiv"><button id="prevbtn"><<<</button></div>
<div id="bar">
<ul id="cartest">
<li><img...
Do you have a link to the site? Also, it might not make a difference but are you calling the jquery.js from within the <head></head> section of your site?
I've never heard of the issue with...
Maybe something like so will work:
<script type="text/javascript">
function calculate_total() {
var no_rooms = document.getElementById('rooms').value;
var room_type =...