Hi,
Let me preface this by saying I have no idea how to do this sort of thing. I'm a designer by trade and my coding experience is minimal to non in anything except html, css and minor javascript.
Anyway, every week a client sends me a list of webinars to update their site with.
The text they send looks like this (but with real info for the x):
and so on for the remainder of the week.
I usually just paste the information into an html file that looks like this:
The thing is, there can be any number of entries per day (usually about 8), so it takes a long time to do. Is there any way to paste the raw information I receive into something and have it pop out like the formatted code above? The website is written in PHP (nothing fancy), so if I could just put <?php include ('somefile.php'); ?> or something similar and everything would work it would be ideal.
Any help that somebody could offer would be a huge help. Even pointing me to a website that I could learn what to do.
Thanks!
Let me preface this by saying I have no idea how to do this sort of thing. I'm a designer by trade and my coding experience is minimal to non in anything except html, css and minor javascript.
Anyway, every week a client sends me a list of webinars to update their site with.
The text they send looks like this (but with real info for the x):
Monday, February 4
Orientation for Business Professionals @ 12:00 pm MST
(XXX) XXX-XXXX, access code XXXX-XXXX-XXXX
https://www1.gotomeeting.com/register/XXXXXXXX
Account Training @ 1:00 pm MST
(XXX) XXX-XXXX, access code XXXX-XXXX-XXXX
https://www1.gotomeeting.com/register/XXXXXXXX
Tuesday, February 5
Orientation for Business Professionals @ 12:00 pm MST
(XXX) XXX-XXXX, access code XXXX-XXXX-XXXX
https://www1.gotomeeting.com/register/XXXXXXXX
and so on for the remainder of the week.
I usually just paste the information into an html file that looks like this:
HTML:
<div class="webinardate">
<div class="title">Monday, February 4 </div>
<div class="webinars">
<h2>Orientation for Business Professionals @ 12:00 pm MST</h2>
<a href="https://www1.gotomeeting.com/register/XXXXXXXX">Video Link </a>
<h3>Audio:</h3>(XXX) XXX-XXXX, access code XXXX-XXXX-XXXX
<h2>Account Training @ 1:00 pm MST</h2>
<a href="https://www1.gotomeeting.com/register/XXXXXXXX">Video Link </a>
<h3>Audio:</h3>(XXX) XXX-XXXX, access code XXXX-XXXX-XXXX
<br /><br />
</div>
</div>
<div class="webinardate">
<div class="title">Tuesday, February 5 </div>
<div class="webinars">
<h2>Orientation for Business Professionals @ 12:00 pm MST</h2>
<a href="https://www1.gotomeeting.com/register/XXXXXXXX">Video Link </a>
<h3>Audio:</h3>(XXX) XXX-XXXX, access code XXXX-XXXX-XXXX
<h2>Account Training @ 1:00 pm MST</h2>
<a href="https://www1.gotomeeting.com/register/XXXXXXXX">Video Link </a>
<h3>Audio:</h3>(XXX) XXX-XXXX, access code XXXX-XXXX-XXXX
<br /><br />
</div>
</div>
The thing is, there can be any number of entries per day (usually about 8), so it takes a long time to do. Is there any way to paste the raw information I receive into something and have it pop out like the formatted code above? The website is written in PHP (nothing fancy), so if I could just put <?php include ('somefile.php'); ?> or something similar and everything would work it would be ideal.
Any help that somebody could offer would be a huge help. Even pointing me to a website that I could learn what to do.
Thanks!