- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
7 Posted Topics
Re: You wont really be able to get alot of knowledge out of a forum, there any many books on PHP so its safe to say there's alot of information. I would recommend reading "PHP for dummies". Its the book I started with, and it covers pretty much everything you need … | |
Re: Try this: [CODE] echo $sql="INSERT INTO `transaction` (ProfileID, ProgramID, ProgramName, ModuleID, ModuleName, EnrollmentID, ProgramFee, OJTFee, WorkshopFee, NCAssessment, OtherFees, TotalAmount, Date, From, To) Values ('$assessprofileid','$assessprogramid', '$assessprogram',$assessmoduleid, '$assessmodule', $assessenrollmentid, $programfee, $ojtfee, $workshopfee, $ncfee, $otherfees, $total, ".date('Y-m-d').", '$formatted_from', '$formatted_to')"; [/CODE] | |
Re: What ever application is performing the inserts and updates, edit it to update both servers. | |
Re: the appearance of the box is controlled by css: [CODE] #did_you_know { -webkit-box-shadow: #999 5px 5px 10px; background-color: black; border-bottom-right-radius: 15px 15px; border: 0px; border-top-right-radius: 15px 15px; color: #DDD; font-size: 14px; left: -450px; margin: 0px; opacity: 0.92; padding: 25px; position: fixed; top: 10%; width: 350px; z-index: 9999; } [/CODE] The … | |
Re: I don't know about your javascript, but if you know PHP you can use it in a CSS file and then randomly generate the background image there. | |
Re: on line 100 you are missing a '.': [CODE]<strong>'.$user'</strong></td>[/CODE] it should be: [CODE]<strong>'.$user.'</strong></td>[/CODE] | |
Hi all, This is my first post on this forum, I hope someone here can help because the last few forums were at a loss... Any ways, I have this MYSQL command: [CODE]SELECT DISTINCT schedule_date, schedule_time, schedule_team_1, schedule_team_2, event_name, type_name, gen_duration, COUNT(DISTINCT((SELECT id FROM link_schedules WHERE schedule_id = schedules.schedule_id UNION … |
The End.