Jump to content

rlweb

Members
  • Posts

    47
  • Joined

  • Last visited

Everything posted by rlweb

  1. Natwest have one of the best online banking systems so far. I have one of those card reader things but only have to use it when setting a new payment place or DD.
  2. Clicklock inbuilt into windows under mouse settings?
  3. HTC Desire and its getting 2.2 now.
  4. Buy your own domain and use google apps ftw.
  5. Try *{ text-align:left; } body{ text-align:center; } that should work for Internet Explorer. Other browsers only need on the div. margi:n 0 auto;
  6. Sam is way to complicated for a school radio. I've used rsplayer its much easier and cheaper. Radio Server Player 2 - Simple. Professional. Affordable.
  7. Large is available too
  8. You can get data from http://xboxapi.duncanma ckenzie.net/gamertag.ashx?GamerTag=GAMERTAG (remove space) I've just made a website that tracks my friends Xbox usage, its surprising how much they use it.
  9. I think someone should do a video on how they do these in illustrator/photo shop so people can learn. I would defiantly watch it and learn from it.
  10. Free and simple CMS is proberly the best solution but you would have to add classes to tell the cms were can be edited.
  11. Have a look at CMS Made Simple. CMS Made Simple - Open Source Content Management System Very simple and you can easily code your modules if you know a little php.
  12. You could do this with some JS/Ajax. Have a simple text file locally and do a Ajax call to see if it can fetch the file if yes show the box if no don't.
  13. I wanted to get some tickets for reading for the sunday but missed out!
  14. Might help if you us with the page/website so we can help.
  15. Powerful component based mailing library for PHP – Swift Mailer Its a very easy to use class but I've found problems with smtp but that could my host.
  16. I've recently done this for a client, was used to send invoices to clients. I've simplified the code: require_once '../_includes/swift/lib/swift_required.php'; //SMTP details I used gmail because I couldn't get the email to be not counted as spam $transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465, 'ssl') ->setUsername('[email protected]') ->setPassword('gmailpwhere') ; //Loads an the controller $mailer = Swift_Mailer::newInstance($transport); //Create the message $message = Swift_Message::newInstance(); //Gives the message a subject $message->setSubject("Apperley Business Supplies Ltd -"); //Set the From address with an array $message->setFrom(array('[email protected]' => 'Email from')); //Set the To addresses with an associative array $message->setTo(array('[email protected]' => 'Email to')); //Give it a body $body = "Hi,\n \n Website file Attached.\n \n Thanks,\n Named\n"; $message->setBody($body); $htmlbody = " Hi, Website file Attached. Regards, Name "; //And optionally an alternative body $message->addPart($htmlbody, 'text/html'); //Creates a html file ob_start(); ?> Untitled Document <br /> body{<br /> font-size:11px;<br /> font-family:Verdana, Geneva, sans-serif;<br /> }<br /> echo $_GET['texbox']; ?> $invoicehtml = ob_get_contents(); ob_end_clean(); //End html files put it into a variable //Create the attachment with your data $attachment = Swift_Attachment::newInstance($invoicehtml, "file.html", 'text/html'); //Attach it to the message $message->attach($attachment); $result = $mailer->send($message);
  17. If its a nivida graphics card have a look under the nivida control panel as you can change the speed of it.
  18. Yeah try reseating the graphics card and checking the power to the graphics card.
  19. If you pm me I can send a zip across created by me but its not documented/commented. Rhys
  20. Try Mythic-Beasts Mythic Beasts - UK-based shell hosting, co-location and Virtual Dedicated Servers They dont have a control panel as such but you have more control over your web hosting. And the support is excellent.
  21. It can be done, just costs a lot more than usual. It's about $0.04 an hour which works our around $350 dollars a year without storage/bandwidth costs.
  22. Thats a great video!
  23. I have a few if anyone needs any, just pm me your email.
  24. rlweb

    PDF to DOC

    Or download the beta of Office 2010 and open it in that and save it as PDF?
×
×
  • Create New...