HTML - Integrate With Wikipedia
So this is my first post and first major attempt at some serious coding. I'm tackling a project beyond my current skill level, so please bear with me as I use this as a learning opportunity.
Here's a crappy sketch of what I'm trying to accomplish: http://i.imgur.com/1Qwhs.png Basically, I'm looking to create a website that allows someone to search for a particular artist and have the albums generated based on the wikipedia page. I think it then makes sense to generate check boxes for the album names, so that users can check an album and see mediafire or rapidshare links based on the artist and album. I realize that I'm revealing my idea and that anyone interested could steal it. I'm mostly just looking to learn from this right now, though. Anyway, if someone could just point me toward some resources as to what would be required in a project like this, or give me an idea as to how to start, I'd really appreciate it. Let me know if you have any questions. Thanks Similar TutorialsI have made my site using html and css. I wanna make forums but dont want it to be external and want it to be part of my html page with same header and foooter. I DONT WANT IT TO CHANGE HEADER OF FOOOTER oF FORUMS. In other words I mean my forums to be integrated in html or when I click link on my html website in the same page the forums come. Any suggestion would be appreciated Hi, I am designing a website for a client who wants a blog/news feed integrated into the homepage. Ideally she would be able to log in to a module (like Wordpress) and post news updates. I'm wondering what is the best way to go about building a website that accommodates a blog/news feed. Should I use Wordpress to build the whole site? Or is that too limiting? Should I build the site in PHP and the integrate a wordpress blog onto the homepage? If so, can someone direct me to a tutorial that explains how to do this? In general, how difficult is this to accomplish? I'm new to web design but am a quick learner. Thanks! Chloe Hi Just wondering what the best design practice is when it comes to adding a shopping cart to your website? Should you find shopping cart software, and build the site around it, or is it possible to integrate a cart into an existing site? The site I'm working on is mainly to provide info to clients, but will also have a small line of products for sale. Also, are there any carts that allow you, once a user has logged in, to only see certain products? Cheers Shaun The php script I'm using for a video-sharing site, uses JWplayer as the default player. JWplayer has different embed code to embed the player and allow video files to be played from a different source than the php script source. I want to replace or modify the script code for the Player with the JWplayer code (so it'll play videos from the other source) which shows the other source as http://videos.mywebsite.com/myvideo.flv. How can I modify or integrate this script code with the code below it (the JWPlayer code)? Do I just need to change a few lines? Thanks for any guidance. Script Code: Code: <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8" name="theMediaPlayer" width="300" height="280" id="theMediaPlayer"> <param name=movie value="flvplayer.swf"> <param name=quality value="high"> <param name=bgcolor value="#FFFFFF"> <param name=allowFullScreen value="false"> <param name=swLiveConnect value="true"> <param name=allowScriptAccess value="sameDomain"> <param name="FlashVars" value="file=uploads/[var.video_play]&width=315&height=280&displaywidth=315&displayheight=260&overstretch=true&showfsbutton=false&image=uploads/thumbs/[var.video_thumb]&backcolor=0xFFFFFF"> <embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="300" height="280" bgcolor="#FFFFFF" name="theMediaPlayer" src="flvplayer.swf" flashvars="file=uploads/[var.video_play]&width=315&height=280&displaywidth=315&displayheight=260&overstretch=true&showfsbutton=false&image=uploads/thumbs/[var.video_thumb]&backcolor=0xFFFFFF"></embed> </object> JWPlayer code: Code: script type="text/javascript" src="swfobject.js"></script> <script type="text/javascript"> swfobject.registerObject("player", "9.0.0", "expressInstall.swf"); </script> <object id="player" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="player" width="328" height="200"> <param name="movie" value="player.swf" /> <param name="allowfullscreen" value="true" /> <param name="flashvars" value="file=http://videos.mywebsite.com/myvideo.flv" /> <object type="application/x-shockwave-flash" data="player.swf" width="328" height="200"> <param name="movie" value="player.swf" /> <param name="allowfullscreen" value="true" /> <param name="flashvars" value="file=http://videos.mywebsite.com/myvideo.flv" /> <p><a href="http://get.adobe.com/flashplayer">Get Flash</a> to see this player.</p> </object> |