+ Reply to Thread
Results 1 to 8 of 8

Thread: Please help me. i am new
      
   

  1. #1
    ifti75 is offline Staff Sergeant
    Join Date
    Sep 2007
    Posts
    45

    Default Please help me. i am new

    I am quite new for website creation, can any one explain me
    1)how can give news bar on my website that will be updated?
    2) how i can link my internal pages to front page?
    i will be thankful to u all

  2. #2
    albumin40's Avatar
    albumin40 is offline Sergeant Major
    Join Date
    Aug 2007
    Posts
    94

    Smile Re: Please help me. i am new

    Hi, I would recommend watching the BlueVoda instruction movies. They will provide all the answers to your questions.

    Kind Regards

  3. #3
    ifti75 is offline Staff Sergeant
    Join Date
    Sep 2007
    Posts
    45

    Default Re: Please help me. i am new

    Quote Originally Posted by albumin40 View Post
    Hi, I would recommend watching the BlueVoda instruction movies. They will provide all the answers to your questions.

    Kind Regards
    Dear Sir,
    i want to put news flicker in my website, please help me
    thanx

  4. #4
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,354

    Default Re: Please help me. i am new

    Dear Ifti,

    The news flicker broadcaster should provide you a code that you put on your page, most likely in an html box. If its an rss feed, do a search for that on the forum, im sure someone or two has run a flicker before.

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  5. #5
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,719

    Default Re: Please help me. i am new

    Hi, cut the html code that flicker gives you & follow this clip. http://www.vodahost.com/vodatalk/add...a-webpage.html
    Good luck.

  6. #6
    ifti75 is offline Staff Sergeant
    Join Date
    Sep 2007
    Posts
    45

    Default Re: Please help me. i am new

    Thanx a lot all of you dear friends, please help me one more issue how to get and from where to get this html code?
    thanx again
    ifti

  7. #7
    ceejaydaniel is offline Private
    Join Date
    Oct 2007
    Posts
    1

    Red face Re: Please help me. i am new

    Quote Originally Posted by ifti75 View Post
    I am quite new for website creation, can any one explain me
    1)how can give news bar on my website that will be updated?
    2) how i can link my internal pages to front page?
    i will be thankful to u all
    #

    help me i am stuck and dont no how to link the pages together the website we are ready to puplish but we need the email address for the website and how to link them all

  8. #8
    zuriatman's Avatar
    zuriatman is offline Moderator
    Join Date
    Sep 2006
    Location
    Malaysia
    Posts
    3,036

    Default Re: Please help me. i am new

    Quote Originally Posted by ifti75 View Post
    I am quite new for website creation, can any one explain me
    1)how can give news bar on my website that will be updated?
    2) how i can link my internal pages to front page?
    i will be thankful to u all
    __________________________________________________ _______________

    Here is a tutorial on Rss feed courtsey of "Mike Beck"


    Displaying An RSS Feed On Your Website Using PHP And MagpieRSS

    Views: 20334
    Votes: 2
    by Mikel Beck 5/28/06 Rating:



    Synopsis:

    By using RSS and the MagpieRSS toolkit, you can import data from another web site or news source and display that information on your own site.

    Pages: 1
    The Article

    These days everybody wants to have fresh content on their web site. Search engines like to see dynamic web pages, where the content is updated on a regular basis. Static pages that have information that doesn't change are not only boring, but less likely to be visited by a search engine spider than a page that changes every time it is displayed.
    By using RSS and the MagpieRSS toolkit, you can import data from another web site or news source and display that information on your own site.
    First, download the MagpieRSS kit from http://magpierss.sourceforge.net.
    Next, unpack the archive, into a directory off your root on your web site called "rss".
    Then, create a directory off your root called "cache". CHMOD this directory to 777.
    You'll need to know the URL for the feed that you want to display. You can find this by searching for "RSS feed" in Google, or by going to one of the many sites that allow you to search thrown various sources for feeds. Syndic8.com is one, for example.
    To display data from a single source, you can use code similar to this:
    require_once('rss/rss_fetch.inc');
    $news_feed = '';
    error_reporting(E_ERROR);
    $rss = fetch_rss("http://www.url-of-the-rss-feed.com");
    $items = array_slice($rss->items, 0);
    foreach ($items as $item )
    {
    $news_feed .= '' . $item['title'] . '' . $item['summary'] . '';
    }
    echo $news_feed;

    MagpieRSS not only decodes the data, but it will also cache the data so it will retrieve news articles only once per hour.
    Utilizing RSS in this fashion will allow your web site to have fresh content displayed constantly, and will (hopefully!) keep the search engine spiders interested in your site. The more the spiders index your site, the more pages you will have listed in the search engines. And with more pages listed in the search engine indexes you have a much better chance of attracting people to your web site.

    As for FrontPage

    U have to make a choice as U cant transfer between one an the other or use both.

    Simplicity of Use: BlueVoda

    U want to make your life more stressful: Use the other.


    If U design with BlueVoda then it is BlueVoda
    www.siapamoyanganda.com/
    Malaysian Family Tree Website From the
    State of Johor.

    HAPPY ARE THOSE WHO DREAM DREAMS AND ARE READY TO PAY THE PRICE TO MAKE THEM COME TRUE.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49