Tag Archives: Page Nbsp

Help with web content feed

Hi My business is new to that forum and I need some assistance from other experienced fighters. I have done a a number of basic webdesigns in addition to PHP and connecting to sql db. I would prefer to add eyeglasses to my internet site and in these frames I need to add many live content just like from a news website by way of example cnn or people. I also choose to link to live local weather reports. I am undecided if I am with all the correct terminology by simply saying " live content". I work with dreamweaver CS3. Can anyone point me into the right direction please. cheers aussie: rambo: You will end up looking at an Rss feed reader. Very easy to do… See the example newsfeed on this subject web page (left column): http: //www. schoharievalleywatch. org/latest. php See the Rss feed from windaction. org Here’s the PHP script to the RSS Feed about that page: PHP: < php    //  rss  page  for  WindAction. org  –    $feed_url  =  “http: //www. windaction. org/latestpoststheme=rss”;     #  INITIATE  CURL.   $curl  =  curl_init();   #  CURL  OPTIONS.   curl_setopt($curl,   CURLOPT_URL, “$feed_url”);   curl_setopt($curl,   … Continue reading

Posted in Web Design | Tagged , , , , , , , , , , , , , , , , , , , | Leave a comment

secure login

I’m working on a website to get a cell store. We need to add some sort of secure employee login to ensure the stores may login and begin a attached article with employee only information that we will also often be creating for these individuals. Never did this particular before so I’m unclear how to take action. Can someone help me. I also simply lost my job so this is certainly something I have to help me find different person. Any advice could help!! Thank you! what technology do you think you’re using how " secure" does your login must be simple login steps: 1)username and pass entered for a form with PUBLISH as method 2)a username/password lookup from the database using the posted data 3)if the lookup succeeds place a value into session PHP:         session_start();         $_SESSION’empLoggedIn’=1;         4)on the secure page (example EmployeeInfo. php) the 1st statements would be PHP: sesion_start();                   if  ($_SESSION’empLoggedIn’! =1)                                        header(‘Location:   http: //www. search engine. … Continue reading

Posted in Web Design | Tagged , , , , , , , | Leave a comment

RSS marquee

precisely how could i work with rss feeds to help populate a marquee no exp with xml. Dorky, Give us a connection to your XML (RSS Feed). Here are a few quirks about XML… so easily could see this feed, I might have a very sample script you can try. sorry ml i dont employ a chosen source however. it is something i used to be considering for of which chat site post revamped, by how is looking much better now http: //www. citicommons. com. but yeah my partner and i dont really have learned to get started on doing this, so im spacious for a point inside right direction. thx ahead of time. Some feeds are easy to accomplish, others have malformed XML and the like use ATOM. Therefore, the required code will vary between them. For example, this is some sort of script that makes use of CURL: PHP: < php  //  rss  page  for  Co  –  $feed_url  =  “http: //www. weather conditions. gov/alerts/co. rss”;   #  INITIATE  SNUGGLE. $curl  =  curl_init(); #  CURL  CONFIGURATIONS. curl_setopt($curl,   CURLOPT_URL, “$feed_url”); curl_setopt($curl,   CURLOPT_RETURNTRANSFER,   1); curl_setopt($curl,   CURLOPT_CONNECTTIMEOUT,   0); #  GRAB  THE  XML  DOCUMENT. $xmlTwitter  =  curl_exec($curl); curl_close($curl); … Continue reading

Posted in Web Design | Tagged , , , , , , , , , , , , | Leave a comment