Search:
Type: Posts; User: sirsaula
Search :
Search took 0.01 seconds.
Delete thread figured it out :D
Here are the XML elements
<element name="LastTimeBuyDate" type="dateTime" nillable="true"/>
<element name="LastTimeDeliveryDate" type="dateTime" nillable="true"/>
What I am trying to do in...
This is the call i am making at the end of the php script
echo $html
The link is not real it is just a test example of how my actual link looks like.
I am using PHP to output an HTML table but when it does the pictures refuses to display.
The php array $members['smallimg'] linkts to the .jpg file for example...
I am using PHP to output an HTML table but when it does the pictures refuses to display.
The php array $members['smallimg'] linkts to the .jpg file for example...
Your method worked now the final thing instead of strings i wish to push the entire php array contents into the javascript array
My attempt is below but it did not work.
<?php...
For some reason it won't echo the javascript call well smh
Tried it, did not function properly.... hmm
I am trying to push to the javascript array after looping 200 times through the member array to push every member that matches the department selected description into the javascript array., However...
I am in need of incrementing through a php array with the javascript variable "i" instead of where i have 0 in the $members array call
var i = 0;
while (i<5)
{
if (<?php echo...
hmm last question; I am trying to push to the javascript array after looping 200 times through the member array to push every member that matches the department selected description into the...
Dude I'm i allowed to tell you I love you????
Thanks!!!!!!!!!!!!!
Sorry I should have been more clear you see this array below, notice it has two separate user values in there. If i wanted to add a third user value into this array with those same fields how would i...
How do I push new values to the following javascript array?
json = {"cool":"34.33","alsocool":"45454"}
I tried json.push("coolness":"34.33"); but it didn't work.
my variable xt keeps on setting to 20 for all the javascript arrays why is it not incrementing after it stores into the array? Please help thanks!
<? $xt = 0 ?>;
var j = 0;
while (j < 200) {...
Here is what i want the javascript array to look like after my php code runs
contacts[0] ={"LNAME":"Sacco"};
I am attempting to add $members[$i]['lastname'] which is a php array into the...