Forum: HTML and CSS 2 Days Ago |
| Replies: 3 Views: 155 Can you tell me what you tried, and what didn't work ? |
Forum: PHP 2 Days Ago |
| Replies: 10 Views: 183 Copy/paste this html into test.html, open it and see what happens when you click a checkbox... |
Forum: PHP 2 Days Ago |
| Replies: 10 Views: 183 Found this link, and made it into this:
http://expressionengine.com/forums/viewthread/128806/
<html>
<head>
<script type="text/javascript"... |
Forum: MySQL 3 Days Ago |
| Replies: 2 Views: 106 Something like this:
select * from product where id not in (select product_id from discount) |
Forum: JavaScript / DHTML / AJAX 3 Days Ago |
| Replies: 6 Views: 246 Thanks all. Your insights helped me fix it. Apparently my .remove() did not recognize the parent li tag correctly. It is now fixed. |
Forum: HTML and CSS 3 Days Ago |
| Replies: 3 Views: 155 Found this, tried it and worked:
http://groups.google.com/group/Google-Maps-API/msg/e42d04b4eb884a3f
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"... |
Forum: JavaScript / DHTML / AJAX 3 Days Ago |
| Replies: 6 Views: 246 Thanks for the tips. I'll sit down this weekend and try again. Apparently the .remove and .hide functions of jQuery do not work as expected, so I'll have to write a work-around. |
Forum: JavaScript / DHTML / AJAX 4 Days Ago |
| Replies: 6 Views: 246 Yes, it could be an IE bug (I did not state it was, but it is the only one with the problem), but that is why I want to know if anyone has ever seen this behaviour before. I want to rule out... |
Forum: PHP 4 Days Ago |
| Replies: 8 Views: 193 Why not let the browser handle it:
<?php
echo '<a href="mailto:' . $row_master_view['email'] . '">' . $row_master_view['email'] . '</a>';
?> |
Forum: JavaScript / DHTML / AJAX 4 Days Ago |
| Replies: 16 Views: 359 <a href="faili/materiali/brosuras/maskesana.pdf" target="_blank" onclick="validate();"> |
Forum: JavaScript / DHTML / AJAX 4 Days Ago |
| Replies: 16 Views: 359 This would still allow for downloading without password, just by looking at the page source.
Another way would be to put the pdf in a separate folder on the server, and password protect it (using... |
Forum: JavaScript / DHTML / AJAX 4 Days Ago |
| Replies: 6 Views: 246 I can reproduce this bug in IE7 (and a colleague in IE6), my link is here:
http://www.pritaeas.net/tools/linkfarm/
If you select a tag the list gets filtered and the tag added to the selected... |
Forum: RSS, Web Services and SOAP 9 Days Ago |
| Replies: 3 Views: 345 Google has no request for retrieving the username/email. |
Forum: PHP 9 Days Ago |
| Replies: 1 Views: 145 You can use Google Charts API, or jQuery.
My own dashboard consists of Google Charts, filled with data provided by Analytics. I also used a jQuery tagcloud for displaying Analytics keywords and... |
Forum: RSS, Web Services and SOAP 9 Days Ago |
| Replies: 3 Views: 345 I can answer for Google OAuth: no. If you want to have the user's email address, then you can implement ClientLogin instead. However, I can't imagine that users are willing to supply their google... |
Forum: MySQL 9 Days Ago |
| Replies: 1 Views: 203 $strSQL = "SELECT DISTINCT area FROM hospital where area like '%$strSearchVal' "; |
Forum: PHP 9 Days Ago |
| Replies: 8 Views: 172 Then it must be this new page, something has to be missing, if all others work.
Before the while, add: die(mysql_error()); to see if and why the query fails. |
Forum: PHP 9 Days Ago |
| Replies: 8 Views: 172 Check if the connection to the database is successful (in code). |
Forum: JavaScript / DHTML / AJAX 9 Days Ago |
| Replies: 2 Views: 240 Something like this will insert a div with class new_item before the element with class class_next
$('<div class="new_item"><\/div>').insertBefore('.class_next'); |
Forum: PHP 9 Days Ago |
| Replies: 8 Views: 172 What happens when the query fails, and $result is false, instead of a resource ? My guess is that there is an error in the query or it's not connecting correctly. |
Forum: HTML and CSS 9 Days Ago |
| Replies: 2 Views: 167 Maybe you can find a solution you like on this page:
http://javabyexample.wisdomplug.com/web-programming/47-javascript/85-30-best-jquery-photo-plugins-sliders-slideshow-galleries-and-scrollers.html |
Forum: PHP 10 Days Ago |
| Replies: 5 Views: 199 the closing brace in line 57 is commented out, put it on the next line. |
Forum: PHP 10 Days Ago |
| Replies: 5 Views: 199 $i=$_GET['day']; will cause the notice if you call the page without this parameter. To remove the notice, do this: $i = isset($GET['day']) ? $_GET['day'] : -1; |
Forum: MySQL 10 Days Ago |
| Replies: 2 Views: 261 You can insert a datefield as '1971-10-28'. The data you are trying to insert does not fit in the date column. |
Forum: MySQL 11 Days Ago |
| Replies: 3 Views: 253 You can create a password in phpmyadmin, in the priviliges section. There are some settings that you can change in the config file of phpmyadmin, whether or not it should ask for your password, or... |
Forum: MySQL 11 Days Ago |
| Replies: 3 Views: 253 IIRC the older versions of wamp had a default root user (named: root) without a password.
Any specific reason you've installed 1.7, and not 2.0 ? |
Forum: JavaScript / DHTML / AJAX 12 Days Ago |
| Replies: 5 Views: 360 http://www.w3schools.com/ |
Forum: HTML and CSS 13 Days Ago |
| Replies: 1 Views: 210 If you add your site to Google Webmaster Tools, you can change this setting. |
Forum: HTML and CSS 13 Days Ago |
| Replies: 1 Views: 223 Looking for this ?
http://www.w3schools.com/Css/default.asp |
Forum: MySQL 13 Days Ago |
| Replies: 1 Views: 262 Check out this first: http://dev.mysql.com/doc/refman/5.1/en/
It contains everything you need to know to get started. |
Forum: PHP 16 Days Ago |
| Replies: 4 Views: 234 $id is not set. Put the following on line 5:
$id = $_GET['id']; |
Forum: PHP 16 Days Ago |
| Replies: 4 Views: 300 If you really need to do this this way, then creating a msqli_multi_query could help. That way the server gets all queries at once, and does not need to handle each query separately.
... |
Forum: PHP 16 Days Ago |
| Replies: 5 Views: 148 TO is a reserved word, put backticks around it: `to` |
Forum: JavaScript / DHTML / AJAX 17 Days Ago |
| Replies: 8 Views: 403 It is possible to attach a callback function to the animate() function. This callback is called after the animation is done. Put your post in that function. See http://docs.jquery.com/Effects/animate |
Forum: JavaScript / DHTML / AJAX 18 Days Ago |
| Replies: 9 Views: 869 Am I correct that you want to change the 1 2 and 3 into icons ? If that is so then I completely missed it before, sorry about that. I'll see if I can find a solution.
Is this what you mean?... |
Forum: ASP.NET 18 Days Ago |
| Replies: 2 Views: 233 The margin-left of the image is causing this. if you add to .main 50px left for the background image it will probably solve your problem. |
Forum: PHP 19 Days Ago |
| Replies: 2 Views: 213 |
Forum: JavaScript / DHTML / AJAX 19 Days Ago |
| Replies: 9 Views: 869 Can you provide a link to your code ? I got it working:
http://www.pritaeas.net/public/jquery/cycle/hover.html |
Forum: Pascal and Delphi 20 Days Ago |
| Replies: 1 Views: 347 For an empty line you can use Memo1.Lines.Add('').
Line 3 and 4 should use this method too, because they are strings. Lines 1 and 2 add a TStrings object (a collection of strings). |
Forum: Pascal and Delphi 20 Days Ago |
| Replies: 2 Views: 436 li.Tag perhaps. Not a very nice solution, but it works. |