Search results

  1. freecrm

    php calendar??

    Matt - thanks but... not working yet. I'll try again tomorrow - getting more problems with additional functions...
  2. freecrm

    Timezone conversion help needed.

    Timezones are a complex subject! Simple - just insert a time() value into a hidden field in your form. <input name="fieldnow" type="hidden" id="eveditedwhen" value="<?php echo time();?>" /> Then include $_POST['fieldnow'] into your insert statement. It shouldn't do. A timestamp...
  3. freecrm

    Timezone conversion help needed.

    This area is a nightmare! I have done a lot of work on it and finally came up with the best solution a month or so back.. http://forums.x10hosting.com/programming-help/78812-multiple-date-time-support-2.html Couple of comments: All dates should be stored as a single timezone - i.e...
  4. freecrm

    I've added a footnote - just need help with one little thing as I've described - maybe you could...

    I've added a footnote - just need help with one little thing as I've described - maybe you could help at the w/e?
  5. freecrm

    php calendar??

    I'm not sure I even need any JS now. The only thing I need to sort is the comparison with these two variables. When thats done, the recordset within the do..while will return the right values and echo the titles and links dynamically within the box with the right links. Almost there - so...
  6. freecrm

    [REQ][400creds]Dynamic php/JS event calendar

    This is almost done now. **CLOSED***
  7. freecrm

    I know you're busy doing c++ (good luck with that!) If you have a quick chance, take a look at...

    I know you're busy doing c++ (good luck with that!) If you have a quick chance, take a look at the progression of this post. http://forums.x10hosting.com/programming-help/84590-php-calendar-2.html#post464730
  8. freecrm

    php calendar??

    _____ This has come a long way since the beginning! The whole calendar is now php driven with no JS! <?php require_once('../Connections/freecrm.php');?> <?php //include ("../includes/setprefs.php");?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  9. freecrm

    Mat - are you there - i could do with a quick bit of help.

    Mat - are you there - i could do with a quick bit of help.
  10. freecrm

    php calendar??

    c++ is scary! Fortunately, I have done quite a bit of groundwork here and managed to get a month view created in php - but no dynamic links and no navigation yet... The calendar page is at http://www.freecrm.x10hosting.com/crmcalendar/calendar_m.php The code so far is <?php...
  11. freecrm

    php calendar??

    Thanks for the response Matt. All I'm after are two views - Month view and day view. (with navigation) or even just month, but a simple list is not what I'm after (I could do this fairly simply). Each cell would have the event title (EVTITLE) with a link carrying the EVID in the URL. JS...
  12. freecrm

    A Light Weight Javascript calendar for your websites and blogs

    I'm on IE - shame... If you look further down these topics, I am after a dynamic calendar...
  13. freecrm

    quick help for how to make a database registration

    This is a very common question and there are plenty of posts on how to go about it. MySQL and php are large areas and, unfortunately for you, there is a lot to learn.
  14. freecrm

    Help with html forms

    This is about as basic as you can get but it gives you a start. <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <form name="form1" method="post" action=""> <p> <input type="text"...
  15. freecrm

    *Urgent*! PHP mail() not delivering to yahoo or aol, but gmail is GREAT!

    I have exactly the same issues but I use X-Sender headers which help a little I think. Yahoo still allocates it as spam though.
  16. freecrm

    ORDER BY challenge..

    Cool - Thanks Natsuki
  17. freecrm

    [REQ][400creds]Dynamic php/JS event calendar

    I already have a MySQL event table, incorporating title, event time and duration. (plus others) I have searched for a reasonable opensource solution that isn't too complex to integrate without too many problems. Visually, I would prefer something like...
  18. freecrm

    php calendar??

    Any help on this would be appreciated and I will offer credits to someone who can point me in the right direction. ALL my credits for someone who fancies writing the script for me! ;) (although I would prefer to understand and create it myself).
  19. freecrm

    Make Login Page

    no problems with the form. Why not keep the code in the same page as the form? username is usually a mixture of your main account name and your db username (yourmainusername_databaseusername) Try to use the MySQL error function wherever possible - it will help you loads... or...
  20. freecrm

    ORDER BY challenge..

    Yay - cracked it. It didn't like the %s variable within the function. I just the variable directly into the mysql query and it works a treat. $workgroup_RSOpps = "gobbledegook"; if (isset($_SESSION['MM_GroupCode'])) { $workgroup_RSOpps = $_SESSION['MM_GroupCode']; } $vascdesc_RSOpps...
Top