I see now I misunderstood the complete functionality of "JSONP", no
XMLHttpRequest is made at all, and as a result it's not possible to
control HTTP headers. In my case a script like:
http://localhost:9998/search/jonas?
callback=jsonp1263842210822 ">
is injected and and loaded by the browser. I
A type, sorry, everything works fine without javascript warnings or
errors, can seem to get any function to be called after a request
which return 400.
Just fixed the server so that it returns correct MIME-type
"application/javascript" instead of just text for errors, this wasn't
the problem thoug
success function is not called at all when I receiver error code 400:
success: function() {
alert("success");
},
error: function() {
alert("error");
},
complete: function() {
":"4b40eea7-2608-4a3b-9c24-7cb04adcd75b"},"status":true,"h
> tml":"this is a good test<\/p>\r\n"}
>
> Now to display the HTML but without all the <\/p>\r\n
>
> Dave
>
>
>
> From: John
;:"6186d5
5b8f0","profile_id":"4b40eea7-2608-4a3b-9c24-7cb04adcd75b"},"status":true,"h
tml":"this is a good test<\/p>\r\n"}
Now to display the HTML but without all the <\/p>\r\n
Dave
________
From: John Arr
#x27;] = true;
//$response['html'] = $this->render('dummy');
$this->header('Content-Type: application/json');
echo json_encode($response);
return;
}
From: John Arrowwood [mailto:jarro...@gma
ot;year_rec":{"year":"2010"},"description":"","id":"4ff9c8
f01b8","profile_id":"4b40eea7-2608-4a3b-9c24-7cb04adcd75b"},"status":true}
And alert(response.data.id); => 4ff9c8f01b8
So its just the darn HT
-Original Message-
From: Michael Geary [mailto:m...@mg.to]
Sent: January-11-10 4:36 PM
To: jquery-en@googlegroups.com
Subject: Re: [jQuery] Re: Ajax forms help
The JSON part of your server response looks fine if you take out the two
line breaks - I assume those are just an artifact of posting
ot;:true,"h
> tml":"this is a good test<\/p>\r\n"}this is a good test
>
> But how would I display only the html section and clean it so its not all
> slashed and escaped?
>
> Thanks
>
> Dave
> -Original Message-
> From: MorningZ [mailt
; {"data":{"title":"","year_rec":{"year":"2010"},"description":"","id":"0936d6
>
> 115e4","profile_id":"4b40eea7-2608-4a3b-9c24-7cb04adcd75b"},"status":true,"h
d":"4b40eea7-2608-4a3b-9c24-7cb04adcd75b"},"status":true,"h
tml":"this is a good test<\/p>\r\n"}this is a good test
But how would I display only the html section and clean it so its not all
slashed and escaped?
Thanks
Dave
-Original M
tml code went here')
>
> But when I returned my view data from the array it was all slahsed /" / / like that.
>
> -Original Message-----
> From: Ibatex [mailto:mjgris...@gmail.com]
> Sent: January-11-10 4:35 AM
> To: jQuery (English)
> Subject: [jQuery] Re: Ajax
view data from the array it was all slahsed mailto:mjgris...@gmail.com]
Sent: January-11-10 4:35 AM
To: jQuery (English)
Subject: [jQuery] Re: Ajax forms help
The beauty of json is that you can transfer alot of different data in an
organized way. You can very easily send back success/failure
The beauty of json is that you can transfer alot of different data in
an organized way. You can very easily send back success/failure status
along with the html.
success: function(response) {
// Response was a success
if (response.status) {
So, why can't you just create a new node with a src attribute? It
will automatically download the image in the background, much like with
AJAX. Is the problem that you want to ensure that the image is fully
downloaded before you try to display it? Have you tried
$(imgTag).ready(...)? (Don't kn
> So you are trying to use jQuery's ".load()" functionality with an
> actual image (i assume that your php sets the content type to
image/
> jpeg, image/gif, etc and writes out the actual binary image
data) ?
YES ! that is correct.
> that's not going to work, as the ".load()" loads the r
So you are trying to use jQuery's ".load()" functionality with an
actual image (i assume that your php sets the content type to image/
jpeg, image/gif, etc and writes out the actual binary image data) ?
that's not going to work, as the ".load()" loads the result of the
Ajax call into the innerHtml
basically all ajax calls go through
$.ajax({.});
I made a function that gets passed all the parameters that I want in
the ajax call
oddly enough i can't get load to work right either i just get Array
returned
On Jan 6, 10:33 am, MorningZ wrote:
> > I want all my ajax calls to run through
> I want all my ajax calls to run through the same ajax function
What "same" ajax function?
On Jan 6, 10:29 am, Mean Mike wrote:
> ok so I figured out that you can put in image in your page using .load
> (imageloader.php) but is there a way to load an image using regular
> ajax call .
>
> alitt
What about $.load() callback? Seems like its called in all possible
cases. The only disadvantage is error checking - is there any helper
in jQuery to check textStatus for error? This one is not particularly
beautiful.
if (textStatus == 'error' || textStatus == 'timeout' || textStatus ==
'parsererr
try also catching the "error" event and see what the problem is (which
make no doubt about it, something is wrong with the response for
jQuery to not go into "success"
$.ajax({
type: "POST",
url: "submit1.php",
data: $("#regist").serialize(),
Hey thanks for a reply...
I corrected the selector as pointed by you..But is still cannot make
anything inside success work..
On Dec 17, 5:18 am, Michael Lawson wrote:
> Is your selector correct for your success function?
>
> perhaps you meant $("#loading") instead of $("loading") ?
>
> cheers
it's not the problem, it's working without ajax :D
any other guess ? :o i'm stuck with that and i cannot move foward
until the problem is fixed ="'(
On 27 déc, 23:46, Charlie wrote:
> I don't do much with flash but this looks strange to me and is what
> is being written into DOM by your getScri
I don't do much with flash but this looks strange to me
and is what is being written into DOM by your getScript
Tristan wrote:
if it can help, here's the link :
http://www.gamer-certified.fr/statistiques/par-hebergeur.php
1) yeap they are correct
2) i tryed that but it still not work
if it can help, here's the link :
http://www.gamer-certified.fr/statistiques/par-hebergeur.php
1) yeap they are correct
2) i tryed that but it still not works
3) php is doing his part, datas are correctly updated with the help of
the POST value
$("#nomGSP").change(function () {
//get
thx for the reply
1) yeah, the values are correct i checked that with firebug
2) i tried putting the getScript in callback (i don't know if i did
this right) but it's the same no data loaded
3) the php part is doing well i've got the right values in notes.php
according to what users select in the
Thanks for your help. Now it works fine.
I have also added your idea for checking if it is the same string and I also
make the AJAX request only if there are more than 2 chars.
The content requested by AJAX prints a combo box and I want to load a
certain URL when an element from that combo bo
I did some testing and didn't experience your problems... give us your
code or put a demo online
Another thing... you should also check if the input value has changed
since the last keyup event, so you don't send the same data if for
example the ENTER or SHIFT keys are pressed you can st
So, i've figured out why that happens: in case of ff and chrome that
is just some security policy, which forbids to do post on "remote
host". Solution is quite simple - place controller and hmtl page with
your scripts on same host, and after that parameter "url" in $.ajax
post will transformed to
Thanks for your reply, David.
> i am afraid you have no way to parse the "Content-Type" in your
> javascript. because it the the header of the response, and you can
> only get the body (the content) of the response.
This is not true. The XMLHttpRequest object has a getResponseHeader
function, whi
Thanks Charlie
Unfortunately, while the code managed to trigger on the first load of
the page. Subsequent AJAX/POST calls from within the same page
wouldn't be triggered. Any way to combine this with a 'live' function?
On Dec 11, 9:53 pm, Charlie wrote:
> when in doubt the jQuery docs are your
Thanks, getScript worked :D, appreciate it!!!
Now i got another problem :s i´m using special characters åäö cause
its a swedish site, iso 8859-1, and when the script loads it doesnt
get properly encoded so i cant see those characers.( Im setting
textfields with example text ) Is there a way to enc
No problem, glad to help.
-T.J.
On Dec 9, 1:12 pm, Cameron van den Bergh
wrote:
> Thank you for this information, indeed, i was using $.get.
>
> On 9 déc, 18:13, "T.J. Simmons" wrote:
>
>
>
> > Are you using $.ajax or one of the other AJAX functions? $.get and the
> > rest only execute a callba
Thank you for this information, indeed, i was using $.get.
On 9 déc, 18:13, "T.J. Simmons" wrote:
> Are you using $.ajax or one of the other AJAX functions? $.get and the
> rest only execute a callback upon success; you'll need to use $.ajax
> if you want a callback for an error.
>
> http://docs.
Are you using $.ajax or one of the other AJAX functions? $.get and the
rest only execute a callback upon success; you'll need to use $.ajax
if you want a callback for an error.
http://docs.jquery.com/Ajax/jQuery.get#urldatacallbacktype has some
more information on that.
-T.J.
On Dec 9, 6:30 am,
Dear Mike, I think i'm on something... To be precise, my json is
generated through a jsp parsing. So its dynamic, and imports taglibs
in first place. These imports generate 'natural' whitespace. So I
started hardcoding this jsp/json anwser, stripping away taglib
imports. Wich gave me a clean, whit
It's probably 'parsererror', not 'parseerror', right?
If you search the jQuery source for 'parsererror', you will find the two
places where that error can be thrown. That may shed a little light on it.
Actually what I would do would be to start stripping down the JSON response
until the error goe
Dear all,
as suggested above, I just made a quick test using
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert("XMLHttpRequest: " + XMLHttpRequest);
alert("textStatus: " + textStatus);
alert("error
Yeah, the eval() is undoubtedly wrong, but that wouldn't be the issue here
if it's never getting to the success callback.
Is there any clue about the error in the arguments passed to the error
callback? You have the wrong parameter list in that function. It takes three
arguments as shown here:
ht
Is there a reason why you have "eval()" ? jQuery will do that by
itself if you are telling it to retrieve JSON
On Dec 8, 1:44 pm, elpatator wrote:
> Hi people,
> I'm trying to make an ajax request, hoping for a clean json response
> to come up. Firefox, as usual, behaves like a charm, but when
On Nov 27, 12:44 pm, Wayne Tong wrote:
> It is one of our internal server here, and don't think you will have access
> to it, see the message it returns when I use $.ajax
What Michael is trying to point out is that it's pretty difficult to
debug something when we can't see either the page that's
I'm not explicitly setting a content-type, but Firebug tells me it's
text/html . I'll try changing it to application/json.
Erm... I must be doing something else wrong in my script. Just now I
just set up a very simple test using both regular $.ajax() and
using jquery.form.js's $.ajaxForm()
Hi,
i don't know how can you attach any other file but xml to
HTTPresponse. I rather do sth like that:
- load php file which return link to pdf
- open new window with pdf file
code:
$.ajax({
type: "POST",
url: "phpfile.php",
data: param,
success: function(html){
Hi,
i don't know how can you attach any other file but xml to
HTTPresponse. I rather do sth like that:
- load php file which return link to pdf
- open new window with pdf file
code:
$.ajax({
type: "POST",
url: "/Portfolio09/scripts/setLang.php",
data: param,
succe
Thanks man!
So I changed this line to this to get it to work:
//old
$(".A, .B").keyup(function(event){
/new
$(".A, .B").live ("keyup", function(event){...
Thanks again for your quick answer!
-Palgo
On 11 Nov, 14:27, Giovanni Battista Lenoci wrote:
> palgo ha scritto:> My problem is that
Thankyou Nathan, I am sure this plugin and the filement group loading
plugin are great, but I wanted a really lightweight solution that uses
the css.
If anyone knows how to set it up properly the chaining the etc (if
possible using .empty()). Please post. I am sure there are others who
would like
I found the answer in the source. $.active tells you how many requests
are pending (just like Ajax.activeRequestCount in prototype).
Thanks all,
Alun Harford
thank´s
--
From: "Josip Lazic"
Sent: Saturday, November 07, 2009 4:02 PM
To: "jQuery (English)"
Subject: [jQuery] Re: $.ajax and responsed value...
You could try return json encoded data from PHP, here's tutorial
http:
You could try return json encoded data from PHP, here's tutorial
http://www.prodevtips.com/2008/08/15/jquery-json-with-php-json_encode-and-json_decode/
> Any idea what that "OPTIONS" and "500 unimplemented method" mean
It sounds like somehow type got set to "OPTIONS" and when sent to the
server it justifiably returned a "500 unimplemented" HTTP error code
because it didn't know what to do with that method type. Take a look
at the "more code here"
What is the URL of the serviceUrl? Make sure that whatever resource
it's going to it supports the POST verb.
For example, if you POST to a .html resource, some servers will not
accept it by default. You'd have to configure your server to allow it.
On Nov 3, 1:53 pm, some_random_kid wrote:
> I am
There's something wrong in your server code:
Parse error: syntax error, unexpected '[' in /home/lastings/
public_html/play/app/controllers/usersessions_controller.php on line
15
As for trapping the error in jQuery... this always works for me as an
error catch:
error: function(x, y, z) {
//
http://lmgtfy.com/?q=jquery+ajax
Michel Belleville
yeah, if you are not using cross domain calls, dump the callback
parameter there, it's totally no needed... and if you are not using
cross domain, then you aren't/don't-need-to use or think about "jsonp"
at all
as for mime type of normal json:
application/json
or
text/plain also works for fine (i
On Mon, Oct 26, 2009 at 9:58 PM, MorningZ wrote:
>
> if this is your *exact* code
>
> $.getJSON(url + "?callback?", function (json) {
>
> then you're missing an equal sign
>
> $.getJSON(url + "?callback=?", function (json) {
Good catch! Fortunately I had the = in my real code. I just forgot to
t
if this is your *exact* code
$.getJSON(url + "?callback?", function (json) {
then you're missing an equal sign
$.getJSON(url + "?callback=?", function (json) {
As for the rest of your issue of "what to do", this post should help:
http://groups.google.com/group/jquery-en/browse_thread/thread/f
Sure, jquery supports several popular response data types, not only xml,
also HTML, text, jason even script.
For more information, I suggest you check jquery official docs.
Becoder.
On Sun, Oct 18, 2009 at 1:21 AM, kidburla wrote:
>
> Hi,
>
> I understand that normally when you want to load a
Hi,
I have a related problem:
http://groups.google.com/group/jquery-en/browse_thread/thread/faf44301f4a22535/537df7c5a5b124bf?lnk=gst&q=garcia.narbona#537df7c5a5b124bf
I have just also found this:
http://groups.google.com/group/jquery-en/browse_thread/thread/4c8e4ac00ee529d2#
http://groups.goo
I use $.post and $.ajax and it always works for me.
Could you mention how you are passing parameters?
That might be holding the key.
Ninad
On Oct 13, 2:33 pm, James wrote:
> Could you define "does not work"? Does the request get sent at all?
>
> Without much information it's hard to help. What
I fixed this using the setting in the ajax request
cache: false
On Oct 13, 3:09 pm, rasensio wrote:
> XP IE6 virtual PC for test, latest version of jquery
>
> the browser hangs after an ajax request.
>
> $.get("/myurl", {random: $.random()}, mycallback);
>
> I read that IE6 hangs for some c
Could you define "does not work"? Does the request get sent at all?
Without much information it's hard to help. What's in the variable
'parameters' and 'register_submitCallback'?
On Oct 13, 3:22 am, alexryan wrote:
> $.get() and $.post() functions work for me *except* when I supply a
> callback
Hi, it could be that your not supplying the type of return in the .post and
.get calls. According to the API .post and .get have a fourth param of
'type' such as 'xml' or 'json'. This might not be the issue but it could be
because your server won't know what mime type to return. DED
On Tue, Oct 13
that is a different issue than the ajax thing. but, it's also a common
thing.. :)
$("input[name='myradio']:checked").val()
That should do it. Get the value of the checked radio option... I
changed it to not use an ID, cuz chances are you are you are using a
name and not an ID...
Failin
hummm,
not that simple. It's multiple radios with multiple values
so how to get id and value of selected one?
lionel28 wrote:
>
> Thanks for replying.
> I am going to try your code.
>
>
> Shawn Grover wrote:
>>
>>
>> in short, no. Not that I know of. I mean no plugin per se. The
>>
Thanks for replying.
I am going to try your code.
Shawn Grover wrote:
>
>
> in short, no. Not that I know of. I mean no plugin per se. The
> code/script is simple enough though...
>
> $("#myradio").click( function () {
>$.ajax({
> url: "somepage.php",
> data: "id=somevalue"
in short, no. Not that I know of. I mean no plugin per se. The
code/script is simple enough though...
$("#myradio").click( function () {
$.ajax({
url: "somepage.php",
data: "id=somevalue",
dataType: "json",
success: function (results) {
var opts = "";
for (x=0;
Update: I ended up adding this line of code to my script:
jQuery.globalEval = function(){};
I am still interested in advice if there's a better way.
On Oct 11, 10:12 am, Christophe wrote:
> I am using the jQuery load function to grab HTML from other pages. I
> am only interested in the HTML an
I think that you could probably do something like this:
//first get
$.ajax({
type: "GET",
url: "some.php",
data: "name=John&location=Boston",
success: function(){
//another get on success
$.ajax({
type: "GET",
url: "somepage2.php",
data:"what=whatever"
I found the answer to my own question.
To overcome this problem, I have to use the .live method to bind
current and future elements on the page.
I made the following change to my function to use the .live method.:
jQuery.fn.checkmarkClickWithAjax = function(){
this.live("click",function(){
Thanks for the info, I will look into that.
Cheers -
george
On Oct 5, 12:21 pm, amuhlou wrote:
> the .A1 within the #info divs does not exist when the document ready
> event fires, so the click event is not applied. try using the live
> method()
>
> http://docs.jquery.com/Events/live
>
> On
the .A1 within the #info divs does not exist when the document ready
event fires, so the click event is not applied. try using the live
method()
http://docs.jquery.com/Events/live
On Oct 5, 2:54 pm, GLSmyth wrote:
> I have some simple code:
>
> $(document).ready(
> function() {
> $('.A1'
No, you can't postpone a DOM refresh as you describe. Your best bet
is probably to wrap the table in a div that has a constant height, so
the surrounding content remains in place as your table grows/shrinks.
On Sun, Oct 4, 2009 at 4:21 PM, Dennis Madsen wrote:
>
> I've created some jQuery which
Someone?
On 5 Okt., 01:21, Dennis Madsen wrote:
> I've created some jQuery which remove many tr rows from my table and
> inserts new via AJAX. This indicate that the page is scrolling because
> first the table increase after elements is removed and afterwards it
> grows when the new content is i
> Effectively after uploading file we can't see any response in firebug.
> (You can see an example in the official website of jquery form
> pluginhttp://malsup.com/jquery/form/#code-samples)
You won't see the response from a file upload displayed on the Firebug
console tab because that request
> I think this is a known limitation of jsonp as a technique, not a bug
> with jquery itself. Jsonp works by appending a script tag to the DOM,
> whose "src" attribute points to the URL you specify. The URL is
> expected to wrap a json object in a function call to the function you
> specify, and t
I think this is a known limitation of jsonp as a technique, not a bug
with jquery itself. Jsonp works by appending a script tag to the DOM,
whose "src" attribute points to the URL you specify. The URL is
expected to wrap a json object in a function call to the function you
specify, and the returne
Thanks guys
Michael, that link is very helpful. I got the numbers a bit mixed up,
it should be around 25 result items each made up of 12 elements with
around 12 pieces of information from db/json. - so yes, 300 elements
total.
If you don't mind me asking, I'd like you guys to give me your opinio
Could you post some relevant code on how you're doing all of this?
It's hard to help from only reading what you've described.
On Oct 2, 5:48 am, Harold Martin wrote:
> Hi,
>
> I've a technical problem, i use jQuery Form Plugin and it's working
> well except for upload file.
> Effectively after u
ce][respons] sweet sf
> data[Experience][start] 1975
> data[Experience][state_id] 15
> field
>
> Nothing is working.
>
> Ideas?
>
> Dave
>
> -Original Message-
> From: James [mailto:james.gp@gmail.com]
>
ition] Customer Service Rep
data[Experience][respons] sweet sf
data[Experience][start] 1975
data[Experience][state_id] 15
field
Nothing is working.
Ideas?
Dave
-Original Message-
From: James [mailto:james.gp@gmail.com]
Sent: October-02-09 12:19 AM
To: jQ
Here's a simplified version of what you want to do:
$('#testForm').bind('submit', function() {
$(this).validate(validation_options);
var valid = $(this).valid();
if (valid) {
// do your ajax
}
});
var validation_options = {
// set your options here
};
On Oct 1, 10:52 a
What happens if you put the whole $.ajax statement in a try/catch
statement? Does it catch?
On Oct 1, 7:24 am, mike wrote:
> Right! I'm having the same problem--neither the error nor the
> complete are being called. The request just fails, probably because
> the responseText is not JSON.
>
> I
Right! I'm having the same problem--neither the error nor the
complete are being called. The request just fails, probably because
the responseText is not JSON.
I've had no luck searching around for answers to this either. Guess
we'll have to wait until the jQuery JSONP plugin is more mature.
(
Right! I'm having the same problem--neither the error nor the
complete are being called. The request just fails, probably because
the responseText is not JSON.
I've had no luck searching around for answers to this either. Guess
we'll have to wait until the jQuery JSONP plugin is more mature.
(
25 x 12 sounds closer to 300 elements? Either way, it's easy to generate
that much stuff in JavaScript and get good performance, if you're careful
about how you write the code. Here's a post with some tips and optimized
code for a similar task:
http://groups.google.com/group/jquery-en/msg/121203c4
I can't really say. It varies depending on what you're trying to put
in and how you're doing it.
For example, inserting 120 large tables versus 120 lines of text will
probably have a noticeable difference.
And how you're doing it. For example, inserting everything at once, or
set a timeout to inse
Thank you for your reply James
In regards to the JSON vs HTML, would the browser have any problems
creating 25 results items each with 12 pieces of information from
JSON? (it'd be more of less 120 elements being appended)
You should use JSON if you have a set of data that you want to easily
parse (e.g. loop through) and put into a format of your own (via
Javascript). You should use HTML if you have a block of HTML to just
insert into the page, or if you just return very short and simple
data, like "true" or "false"
hi,
Firebug was telling me that editcomment was not defined and the dialog was
freezing. So I put editcomment, cid and pagetext in bracket and the dialog
box updated the div, closed but database was not updated
Thanks
lionel28 wrote:
>
> Hi,
>
> I am loading tiny Mce editor in a dialog box
Hi
Please try this
var content = jQuery.trim(tinyMCE.get('editor').getContent());
$.post("comments.php", { do : editcomment , c : cid , pagetext : content
},
function(data){
});
Best Regards
Ranga
On Tue, Sep 29, 2009 at 9:48 AM, lionel28 wrote:
>
>
> Hi,
>
> I am loading
OK, now got the backend working with the following code:
<%...@language="VBSCRIPT"%>
<%
Dim rsUser__MMColParam
rsUser__MMColParam = "1"
If (Request.Form("username") <> "") Then
rsUser__MMColParam = Request.Form("username")
End If
%>
<%
Dim rsUser
Dim rsUser_numRows
Set rsUser = Server.Creat
Thank you James that worked. I can now move on and try and code the DB
connection.
On Sep 28, 10:22 pm, James wrote:
> When you return "response" in your AJAX, it's not "1". It's
> "...". jQuery doesn't automatically go through your
> HTML and look in the body to find the "1".
> In your server-s
When you return "response" in your AJAX, it's not "1". It's
"...". jQuery doesn't automatically go through your
HTML and look in the body to find the "1".
In your server-side code, you don't return the whole HTML page. You
just return the String "1" (without the quotes). Such that if you load
up c
OK, thank you for taking the time out to look at this issue for me. Ok
this is the code client side page:
http://www.w3.org/1999/xhtml";>
Ajax Username Checker - Using JQuery
#username{
padding:3px;
font-size:18px;
border:3px #CCC solid;
}
#tick{display:none}
#cross{d
Why do you have a page with a php extension?
As for helping further, it would be a huge help if you post some non-
working code... you could have a bad selector, bad syntax, who
knows...
On Sep 28, 3:15 pm, factoringcompare
wrote:
> I can’t get it to work. Something strange is happening.
>
>
I can’t get it to work. Something strange is happening.
To manually check if the client side code is working I put “1” in the
server side page with a .php extension and sure enough I can get the
code to work. If I do the same with a .asp page it has no effect. Any
thoughts what’s going on?
On S
"This is the php code I can't mimic: "
Really? the code is super simple:
- Open connection to the database
- Take the posted value of "username", trim it, and make lower case
- Clean up the string to help prevent SQL injection attack
- Take that username and check against the database
- echo (
OK, I am trying to get this example to work :
http://papermashup.com/jquery-php-mysql-username-availability-checker/
This is the php code I can't mimic:
query($query);
$num = mysql_num_rows($result);
echo $num;
mysql_close();
On Sep 28, 2:16 pm, MorningZ wrote:
> Take an example page in
Take an example page in php that you want to mimic, and simply have
asp send back to the browser the same information
On Sep 28, 3:58 am, factoringcompare
wrote:
> Hi,
>
> Reasonably new to web building. I am now just updating my site with
> jQuery (first time user).
>
> I would like to implem
That would make sense, since `do` is a language keyword:
do {
code to be executed
}
while (var <= endvalue);
I am sure there is a way to escape it, though in the same way I am
fearful of using if/else/for/while/var and all the test as name/value
pairs in JS or jQ, I would look to ch
1 - 100 of 1045 matches
Mail list logo