Recent content by megan1989

  1. M

    Help With PHP Calender Code

    Hi Root, Thanks for your reply to this, i think with what everything you said i should be able to get it working. Thank you especially for the examples in the code, so grateful. The troubleshooting with the "ad_type" is really key i know. Yes, using the if, else if, else statement there i know...
  2. M

    Help With PHP Calender Code

    Yes, i can. But what that IF statement that is supposed to figuring out which entries to highlight in what color is always coming up as "False" which highlights everything in the same color which doesn't help. I've attached a screenshot of what's happening, hopefully that will help
  3. M

    Help With PHP Calender Code

    Hi, I've been hitting my head against a wall trying to figure out how to make every event that is rendered on the calendar change color based on the value of "ad_type" which is stored in a mysql database that's currently connected to this calendar. It works fine with loading the events for the...
  4. M

    PHP Code to Edit MySQL Database

    From what I tried with adding the escape yourquotes where title=\'$title\', it did not look like it accomplished anything different. But in a echo statement of the query this is what it spit out to me: Query String -> UPDATE Words SET Title = 'Testing', Author = 'Jane Doe', Display_date = 'Aug...
  5. M

    PHP Code to Edit MySQL Database

    I've been working on some code to update a MySQL and am running into some problems involving the actual updating and deleting of said data. From everything that I have seen and looked up on this, it should be working but it is not. Through my troubleshooting of it, the update/delete works if I...
  6. M

    Relative Hyperlinks with Images

    Thank you for your reply, that makes sense. I will make a note of that information you provided, so hopefully I won't run into that error again.:)
  7. M

    Relative Hyperlinks with Images

    Maybe I misunderstood you, but my webpage is located inside a main folder and inside the main folder is another folder with the images. I suppose it does sound a bit weird, but I promise this makes my folders seem more organized. Thank you for your reply.
  8. M

    Relative Hyperlinks with Images

    Okay, apparently I was not going far enough back with the relative hyperlink it was solved by issuing this to the code "Pacific/images/yurt.jpg"
  9. M

    Relative Hyperlinks with Images

    Here is how I am attempting to do this: < img src="../yurt.jpg" alt="Pacific Trails Yurts" width="295" height="215"> The image is located one level up from the main folder that I have the webpage in. And as of now, it does not display the image only the alternate text, which means I am not...
  10. M

    XAMPP with apache & php mySQL

    It seems when I was messing around in the config files that I screwed something up. As a last resort I uninstalled it and reinstalled it and it seems (for the moment) it is working okay now.
  11. M

    XAMPP with apache & php mySQL

    I am having some problem getting this XAMPP program to work. I installed it about a week ago and have been having problems getting it to do what I want it to do. I've got the ports for the Apache and MySQL working as for a while it wasn't starting because there was some interference with...
  12. M

    VBA Advice/ Help

    I am looking for some advice on how to use VBA, I am completely new to this programming language so not sure exactly how it works, but I understand that most all programming languages do share some common ground. I am using this in Access, and am trying to create a function in the VBA to make a...
  13. M

    HTML function not working?

    Thank you Berry, I thought that there may have been a way to be able to call all of those functions within a master function, so to speak. Apparently not, anyway I made the corrections that you suggested and it is working correctly now. Thank you
  14. M

    HTML function not working?

    I have created a function to take someone through a short series of questions, but when I try to push the button on the webpage it does nothing. I have gone through it a couple of times and have been unable to see where I have gone wrong. Here is the code for the function: function...
  15. M

    generatng a random decimal value

    I know that when you use the math.random() that it generates a random value with many places : 5.6938506849, and I need it to just generate two decimal value: 5.69. How do I do this, here is a portion of the code: //problem 1 var num1a = (Math.random()* 10) + 1; var num1b =...
Back
Top Bottom