Forum: JavaScript / DHTML / AJAX Nov 9th, 2009 |
| Replies: 4 Views: 462 This is a good tutorial on Advanced AJAX with MySQL
http://www.tizag.com/ajaxTutorial/ajax-mysql-database.php |
Forum: JavaScript / DHTML / AJAX Nov 9th, 2009 |
| Replies: 4 Views: 462 The request URL would have _GET varaibles in, just create the file action.php with the contents
<?php
print_r($_GET);
?>
and view the output in Firebug (XHTML requests section) |
Forum: JavaScript / DHTML / AJAX Nov 8th, 2009 |
| Replies: 4 Views: 462 Sending data:
The easiest way to send data to your server from the form is using _GET variables
You can take the variables from your form and add them to your string like this
function action()... |
Forum: JavaScript / DHTML / AJAX Nov 3rd, 2009 |
| Replies: 1 Views: 428 Hi,
I have some code to dynamically retrieve one of three AJAX files and insert it into a DIV
The Javascript is
function createajax() {
var Ajax;
try{
Ajax = new XMLHttpRequest();
}... |
Forum: JavaScript / DHTML / AJAX Jul 21st, 2009 |
| Replies: 4 Views: 436 Thanx airshow, i guess your solution is kind ov like explode() in PHP but it works perfectly |
Forum: JavaScript / DHTML / AJAX Jul 20th, 2009 |
| Replies: 4 Views: 436 Hi,
I have used AJAX lots before and I wondered if it was possible to set variables from an AJAX file E.G. an ajax file could set
var set1 = 10;
var set2 = 55;
with both variables coming from an... |
Forum: JavaScript / DHTML / AJAX Jun 24th, 2009 |
| Replies: 1 Views: 824 JSP is unable to do this because (As far as I am aware) it does not have an image library. You would need to use PHP GD as a backed or something similar. PHP is the preferred method for handling... |
Forum: JavaScript / DHTML / AJAX Jun 9th, 2009 |
| Replies: 2 Views: 439 Hi,
I have this code which is not working
<script type="text/javascript" language="javascript">
<!--
function loadpage() {
document.getElementById('Loadingindic').style.top = '-500%';
}
... |
Forum: JavaScript / DHTML / AJAX May 7th, 2009 |
| Replies: 0 Views: 993 Hi,
I have written the following code that makes the DIV fall down from the top of the page to a certain point E.G. 200 pixels from the top of the page however, I want the DIV to appear 200 pixles... |
Forum: JavaScript / DHTML / AJAX Apr 6th, 2009 |
| Replies: 5 Views: 656 Well their is still nothing you can do to stop it, and whether your selecting the page to display in the frame or your users are you would still need permission to do this. |
Forum: JavaScript / DHTML / AJAX Apr 5th, 2009 |
| Replies: 5 Views: 656 Its just Javascript, there is nothing you can do to stop it without serious modification to the users browser or changing the source of the page. To quote from almostbob
If it was my site you were... |
Forum: JavaScript / DHTML / AJAX Mar 26th, 2009 |
| Replies: 4 Views: 974 Hi,
Thanx almostbob, although your solution didn't actualy solve the problem, you helped me find out how to fix it myself. |
Forum: JavaScript / DHTML / AJAX Mar 26th, 2009 |
| Replies: 4 Views: 974 Hi,
I have the following Javascript code for loading my Google custom search:
Search = '<form action="http://www.ututorial.net/search" id="cse-search-box"><div><input type="hidden" name="cx"... |
Forum: JavaScript / DHTML / AJAX Mar 23rd, 2009 |
| Replies: 0 Views: 513 Hi,
I have absolutely no clue where to go with this so any ideas would be useful.
I want a user to be able to take a screen print and then paste that directly on to the page and upload it to the... |
Forum: JavaScript / DHTML / AJAX Mar 16th, 2009 |
| Replies: 2 Views: 1,152 Shouldn't this be in the ASP forum? If you want help with JS just post some of the pure HTML, not ASP/VB |
Forum: JavaScript / DHTML / AJAX Jan 27th, 2009 |
| Replies: 1 Views: 779 This isn't such a crazy idea, its done all the time as a matter of fact.
I presume your familiar with javascript,
create a function that runs on the click of a link e.g.
<a href="#"... |
Forum: JavaScript / DHTML / AJAX Oct 18th, 2008 |
| Replies: 1 Views: 2,070 Hi,
I want to set a function that will count how long a button is held down for however when the button is released I need to run another function that will pass the length of time and a variable... |
Forum: JavaScript / DHTML / AJAX Sep 30th, 2008 |
| Replies: 1 Views: 796 Hi,
I have created a site in Fireworks CS3, i go to export and export the file as HTML.
If I open the file from my hard drive in Firefox it works fine however if I open it in http://localhost/ the... |
Forum: JavaScript / DHTML / AJAX Aug 3rd, 2008 |
| Replies: 1 Views: 2,331 Hi,
I have got a script to refresh a single image but I want the user to be able to change the refresh rate of the picture by clicking a link. I have tryed the following code:
<p><IMG... |
Forum: JavaScript / DHTML / AJAX Jul 26th, 2008 |
| Replies: 8 Views: 1,167 Could You Explain This More.
Regards,
Sam Rudge |
Forum: JavaScript / DHTML / AJAX Jul 25th, 2008 |
| Replies: 8 Views: 1,167 Right i have done that but now the box doesn't disappear at all
This is my javascript from logbox.js
// Javascript for showing the log in box:
//Hide
function hidebox() {
if... |
Forum: JavaScript / DHTML / AJAX Jul 25th, 2008 |
| Replies: 8 Views: 1,167 But then it is still there. I probably should explain the problem better. I want the login box to appear when the user clicks on the LogIn link in the account tab but unless the user has clicked on... |
Forum: JavaScript / DHTML / AJAX Jul 25th, 2008 |
| Replies: 8 Views: 1,167 Hi,
I have created a login box that appears on the click of a button that says login (Obviously) but when I load the page the div appears until the page loads. How do I get the div to appear... |
Forum: JavaScript / DHTML / AJAX May 27th, 2008 |
| Replies: 3 Views: 2,556 On second thoughts I think there might be a way but it might be tricky.
If you used $_SESSION variables you could probably do it but you would have to reload the main page.
On the main page... |
Forum: JavaScript / DHTML / AJAX May 27th, 2008 |
| Replies: 3 Views: 2,556 Hi,
I didn't really know what you ment by this question so I have answered the two possibility's to the best of my knowledge.
You could just add PHP tags into your IFrame tag:
<iframe... |