Search Results

Showing results 1 to 40 of 742
Search took 0.04 seconds.
Search: Posts Made By: pritaeas
Forum: HTML and CSS 2 Days Ago
Replies: 3
Views: 155
Posted By pritaeas
Can you tell me what you tried, and what didn't work ?
Forum: PHP 2 Days Ago
Replies: 10
Views: 183
Posted By pritaeas
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
Posted By pritaeas
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
Solved: exclude
Views: 106
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
<a href="faili/materiali/brosuras/maskesana.pdf" target="_blank" onclick="validate();">
Forum: JavaScript / DHTML / AJAX 4 Days Ago
Replies: 16
Views: 359
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
Google has no request for retrieving the username/email.
Forum: PHP 9 Days Ago
Replies: 1
Views: 145
Posted By pritaeas
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
Posted By pritaeas
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
Solved: php mysql
Views: 203
Posted By pritaeas
$strSQL = "SELECT DISTINCT area FROM hospital where area like '%$strSearchVal' ";
Forum: PHP 9 Days Ago
Replies: 8
Views: 172
Posted By pritaeas
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
Posted By pritaeas
Check if the connection to the database is successful (in code).
Forum: JavaScript / DHTML / AJAX 9 Days Ago
Replies: 2
Views: 240
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
the closing brace in line 57 is commented out, put it on the next line.
Forum: PHP 10 Days Ago
Replies: 5
Views: 199
Posted By pritaeas
$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
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
http://www.w3schools.com/
Forum: HTML and CSS 13 Days Ago
Replies: 1
Views: 210
Posted By pritaeas
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
Posted By pritaeas
Looking for this ?
http://www.w3schools.com/Css/default.asp
Forum: MySQL 13 Days Ago
Replies: 1
Views: 262
Posted By pritaeas
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
Posted By pritaeas
$id is not set. Put the following on line 5:

$id = $_GET['id'];
Forum: PHP 16 Days Ago
Replies: 4
Views: 300
Posted By pritaeas
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
Posted By pritaeas
TO is a reserved word, put backticks around it: `to`
Forum: JavaScript / DHTML / AJAX 17 Days Ago
Replies: 8
Views: 403
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
smarty.net
Forum: JavaScript / DHTML / AJAX 19 Days Ago
Replies: 9
Views: 869
Posted By pritaeas
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
Posted By pritaeas
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
Posted By pritaeas
li.Tag perhaps. Not a very nice solution, but it works.
Showing results 1 to 40 of 742

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC