| bio | website | monkeycalendar.com |
|---|---|---|
| location | Austin, TX | |
| age | ||
| visits | member for | 3 years, 4 months |
| seen | May 16 at 21:45 | |
| stats | profile views | 226 |
musician, newbee php javascript hack.
|
May 9 |
comment |
jQuery slider and background image works in Firefox but not Chrome Ah-saw your reply after just linking to my own copy of jquery. It works now. Thank you! |
|
May 9 |
comment |
jQuery slider and background image works in Firefox but not Chrome ok. So I should just be linking to a jquery file on my own host? |
|
Apr 29 |
comment |
exporting mysql in mamp-not letting me save file as sql? That was it-thanks! |
|
Mar 20 |
comment |
How do I add a conditional to this statement to not echo empty $weekday Worked great! Thanks! |
|
Mar 20 |
comment |
How do I add a conditional to this statement to not echo empty $weekday @ElefantPhace try what?? Would you like me to post all the bad attempted code I've been trying over here? I'm not trying to get you to spoonfeed me stuff, but when you start telling me I need to start creating new methods, then you have gone pretty far over my head-if I knew how to do that, I would not be here asking what (I thought) was a simple conditional question. |
|
Mar 20 |
comment |
How do I add a conditional to this statement to not echo empty $weekday @blakeo_x well whoever can figure out how to make the code do the needed thing will be the winner-lol ;-p |
|
Mar 20 |
comment |
How do I add a conditional to this statement to not echo empty $weekday Well I'm glad to hear it is a little more complicated than I first thought. If it is helpful at all, the full code for the plugin is freely available here for anyone: wordpress.org/extend/plugins/weekly-class-schedule |
|
Mar 20 |
comment |
How do I add a conditional to this statement to not echo empty $weekday I'm a total newbie, so may be way off, but since I'm only dealing with a finite amount of data (seven days), what if we do something like the above loop but instead of echoing the output as we go, you go through the loop and then if there is data to be output, that array is added to a new array, and if not then it is not put in the array, and then you print the array with data? If only I knew how to do it... |
|
Mar 20 |
comment |
How do I add a conditional to this statement to not echo empty $weekday I first asked the developer and was told they don't have that functionality, but that it would be a "simple PHP tweak". |
|
Mar 20 |
comment |
How do I add a conditional to this statement to not echo empty $weekday I'm afraid I don't know how to do that? I'm a newbie, but I am happy to do it if you can tell me what I'm looking for? |
|
Mar 20 |
comment |
How do I add a conditional to this statement to not echo empty $weekday I put the vardump in the edited question above for an empty $weekday. |
|
Mar 20 |
comment |
How do I add a conditional to this statement to not echo empty $weekday lol-this code just went crazy with the looping... |
|
Mar 20 |
comment |
How do I add a conditional to this statement to not echo empty $weekday What information can I give to help? |
|
Mar 20 |
comment |
How do I add a conditional to this statement to not echo empty $weekday Yeah, this also isn't working. $weekday would be an array, right? So isn't there a way to see if the array is empty and then not echo it if so? |
|
Mar 20 |
comment |
How do I add a conditional to this statement to not echo empty $weekday This still echos $weekday even if it's empty. I need to not echo <h3><?php echo $weekday; if there are no contents. |
|
Jan 15 |
comment |
Not correctly passing value of checked box-html form (with javascript) Thanks again-much appreciated! |
|
Jan 15 |
comment |
Not correctly passing value of checked box-html form (with javascript) I guess this is simply from a lack of understanding of javascript on my end-is this lne in the javascript setting the variables in the sendEmail.php script? { emailFrom: emailFromVal, yourName: yourNameVal, yourCity: yourCityVal, classInterest: classInterestVal }, |
|
Jan 15 |
comment |
Not correctly passing value of checked box-html form (with javascript) Yes that did it. Thank you! One area of confusion for me-why do I not need to change anything in the last sendEmail.php? Since the email is sending via javascript, does sendEmail.php not actually do the sending? |
|
Jan 15 |
comment |
Not correctly passing value of checked box-html form (with javascript) ah wait-so I changed the one line to 'var classInterestVal = $("#classInterest").is(":checked");' but now I'm not passing the value if it is 'true' |
|
Jan 15 |
comment |
Not correctly passing value of checked box-html form (with javascript) That did it! Thanks so much! And thank you for telling me how to debug this! I use firebug and just now learned how to do it there. |