HTML - Need Help Integrating Two Sites
Hello,
I have ClientExec, and I want to integrate it with my website. The signup files are a header.tpl and footer.tpl, and I am trying to integrate it with a HTML (tableless) webpage. If anyone thinks they could help me, please PM me for the files, and maybe they can point me in the right direction. I don't want to post the code publicly, because my design is unique, and I don't want to break the TOS of ClientExec. (Note: I don't wnat someone to do this for me. I just need someone to point me in the right direction) Cheers, Peter Similar TutorialsBasically I want to know how do I integrate code from one website to my website. I basically want to show info from yelp.com and put some comments onto my site for a business and I want it so when someone adds a comment to yelp my site updates with it, so i dont have to go copy/paste the comment. Is this possible without using a iframe and if so, how? Want the comments from this url: http://www.yelp.com/biz/burger-delux-northville added to this site on its own page: http://burgerdeluxellc.com/ Hi guys I've created a design for a website and I want to make several images become text forms when clicked on. Here's what the form images look like: I need them to be like the images on the tumblr home page that when you click on the image, the text disappears and allows you to type. Thanks for any help. Hello I have a site I am rebuilding and I want to incorporate a the most recent posts from a Blogger blog into the site, so that it looks like the attached. The formatting does not have to be exactly like that but it is in essence what the client creating the look and feel wanted. Any ideas on how this can be done would be greatly appreciated. Hello I have a site I am rebuilding and I want to incorporate a the most recent posts from a Blogger blog into the site, so that it looks like the attached. The formatting does not have to be exactly like that but it is in essence what the client creating the look and feel wanted. Any ideas on how this can be done would be greatly appreciated. hi guys im not very good in html. anyway, as much as i look into my google map code, the more i dont get how to integrate OSM in it. could anyone lead me in right direction where to put var mapnik and var osmarend. here is my gmap.html file: this is the map with autolocator i appreciate any help or hint Quote: ------------------------------ markersArray_{$v.caption} = []; // get address value address = ''; address_html = ''; var loc = "{$v.extensions}"; {literal} if(loc) { var location_fields = loc.split(","); for(i=0; i<location_fields.length; i++) { var f = location_fields[i]; if(!f) continue; var t = document.getElementById(f).type; if(t=="text" || t=="textarea") var l = document.getElementById(f).value; else { var selected_index = document.getElementById(f).selectedIndex; var l = document.getElementById(f).options[selected_index].value; } if(!l) continue; if(address!='') { address = address + ', '; address_html = address_html + '<br/>'; } address = address + l; address_html = address_html + "<b>" + l + "</b>"; } } // end if loc {/literal} old=new Array(); {if $tmp[$v.caption]}old = splitMapsCoord('{$tmp[$v.caption]}');{/if} {literal} if (old.length>0) { {/literal} var lat = parseFloat(old[0]); var long = parseFloat(old[1]); var h = parseInt(old[2]); {literal} } else { {/literal} var lat = {$settings.google_maps_default_lat}; var long = {$settings.google_maps_default_long}; var h = {$settings.google_maps_default_height}; {literal} } var p = new google.maps.LatLng( lat,long ); var myOptions = { zoom: h, center: p, panControl: true, zoomControl: true, scaleControl: true, mapTypeControl: true, mapTypeId: google.maps.MapTypeId.ROADMAP }; {/literal} map_{$v.caption} = new google.maps.Map(document.getElementById("gm_{$v.caption}"), myOptions); {if $tmp[$v.caption]} {literal} var marker = new google.maps.Marker({ position: p, map: {/literal}map_{$v.caption}{literal} }); {/literal} markersArray_{$v.caption}.push(marker); {literal} if(address_html) { var infowindow = new google.maps.InfoWindow({ content: address_html }); infowindow.open({/literal}map_{$v.caption}{literal}, marker); } {/literal} {/if} // get click coordinates google.maps.event.addListener(map_{$v.caption}, 'click', function(event) {literal} { if (event.latLng) { {/literal} map_{$v.caption}.panTo(event.latLng); if (markersArray_{$v.caption}) {literal} { for (i in markersArray_{/literal}{$v.caption}{literal}) { markersArray_{/literal}{$v.caption}{literal}[i].setMap(null); } markersArray_{/literal}{$v.caption}{literal}.length = 0; } marker = new google.maps.Marker({ position: event.latLng, map: {/literal}map_{$v.caption}{literal} }); {/literal} markersArray_{$v.caption}.push(marker); {literal} if(address_html) { var infowindow = new google.maps.InfoWindow({ content: address_html }); infowindow.open({/literal}map_{$v.caption}{literal}, marker); } var lat = event.latLng.lat(); var long = event.latLng.lng(); {/literal} var h = map_{$v.caption}.getZoom(); if(IsNumeric(lat) && IsNumeric(long) && IsNumeric(h)) document.getElementById("{$v.caption}").value=lat+","+long+","+h; {literal} } }); google.maps.event.addListener({/literal}map_{$v.caption}, 'zoomend', function(oldLevel, newLevel){literal}{ {/literal} var old_val = document.getElementById("{$v.caption}").value; {literal} if(old_val) { {/literal} var arr = old_val.split(","); document.getElementById("{$v.caption}").value=arr[0]+","+arr[1]+","+newLevel; {literal} } {literal} }); {/literal} ------------------------------ Hi, I am working on integrating a flash presentation in HTML (basically a php website) The flash movie is about power point presentations - I was able to convert them to .swf files. I need to display them in the php based website. I was able to integrate the .swf file in the website. Now, I need to make it "dynamic" - what I mean by this is, I will be having the flash movie of different ppt slides running in a server in a loop. Whenever someone accesses the website, the "slide" that is currently being shown in the player has to be displayed in the webpage instead of starting from the beginning. I am a novice as far as webdesign is concerned. I would like to know about any tutorials/books that can provide me with information on this. Also, any specific area of HTML that might help me in this project. Thanks in advance ! I was given this code to replace my "table" in my Contact Form: Code: <fieldset class="info"> <label for="info_name"><span>*</span>Your Name</label> <input type="text" name="name" id="info_name" maxlength="50" /> <br /> <label for="info_email"><span>*</span>Email Address</label> <input type="text" name="email" id="info_email" maxlength="40" /> <br /> <label for="info_subject">Subject:</label> <input type="text" name="subject" id="info_subject" maxlength="40" /> <br /> <label for="info_comments">Comments:</label> <textarea name="comments" id="info_comments"></textarea> </fieldset> <fieldset class="captcha"> <label for="captcha_text"><span>*</span>Enter Image Code:</label> <input type="text" value="" name="captext" id="captcha_text" maxlength="6" /> <a href="#" onclick="refresh_security_image(); return false;">Refresh Image</a> <img src="includes/captcha.php" id="verificiation_image" /> </fieldset> <fieldset class="submitsAndHiddens"> <input type="submit" value="Submit" /> </fieldset> I just don't know how to integrate it with this existing page code: Code: <body> <!--<div style="height: 80px; background-color: #336699;"> <span class="page_title"><span class="form_title">Contact Us</span></span> </div>--> <br /> <table cellpadding="0" cellspacing="0" align="center" width="600"> <tr> <td> <font face="verdana"><font size="2"><font color=#800000;">[var.result]</font></font><font color="red"><strong>[var.error]</strong></font><br> <hr size="1" /> <br /> <form action="/page.php?page=10" method="post" name="contact_us" onSubmit="return capCheck(this);"> <table cellpadding="5" width="100%"> <tr> <td width="10" class="required_field">*</td> <td width="80">Your Name</td> <td> <input type="text" name="name" maxlength="50" style="width:300px" /></td> </tr> <tr> <td class="required_field">*</td> <td>Email Address</td> <td> <input type="text" name="email" maxlength="40" style="width:300px" /></td> </tr> <tr> <td></td> <td>Subject:</td> <td> <input type="text" name="subject" maxlength="40" style="width:300px" /></td> </tr> <tr> <td></td> <td>Comments:</td> <td> <textarea name="comments" style="width: 100%; height: 250px"></textarea></td> </tr> <tr> <td class="required_field">*</td> <td>Enter Image Code:</td> <td> <input type="text" value="" name="captext" style="width: 100px" maxlength="6" /></td> </tr> <tr> <td></td> <td><a onclick="refresh_security_image(); return false;" style="cursor:pointer;"><u>Refresh Image</u></a></td> <td> <img src="includes/captcha.php" border="0" id="verificiation_image" /></a></td> </tr> </table> <br/> <br/> <p> <input type="hidden" name="submited" value="1" /> <input type="submit" name="submit" value="Submit" /> </p> </form> </td> </tr> </table> <script type="text/javascript"> <!-- function refresh_security_image() { var new_url = new String("[var.base_url]/includes/captcha.php?width=132&height=36&charcators="); new_url = new_url.substr(0, new_url.indexOf("width=") + 37); // we need a random new url so this refreshes var chr_str = "123456789"; for(var i=0; i < 6; i++) new_url = new_url + chr_str.substr(Math.floor(Math.random() * 2), 1); document.getElementById("verificiation_image").src = new_url; } --> </script> <!-- captch start --> <script type="text/javascript" id="clientEventHandlersJS" language="javascript"> <!-- function capCheck(theForm) { var xmlhttp; var sReply; DataToSend = "action=process&captext=" + escape(theForm.captext.value); if (window.XMLHttpRequest) { xmlhttp=new XMLHttpRequest(); xmlhttp.open("POST",'includes/process.php',false); xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xmlhttp.send(DataToSend); sReply = xmlhttp.responseText; } else if (window.ActiveXObject) { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.open("POST",'includes/process.php',false); xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xmlhttp.send(DataToSend); sReply = xmlhttp.responseText; } if (sReply == "good") { return true; } else if (sReply == "bad") { alert("Security code not valid, please try again"); return false; } else if (sReply == "") { alert("You must enter the security code"); return false; } else { alert("Error"); return false; } } --> </script> <!-- captch end --> </body> Can you help me? Thanks Ok so I have these affiliate links and what I would like to do is create a page have my banner/logo located at the top of the page and then have the affiliate link open at the bottom of the page I'm trying to figure out how I would go about coding some features in sites like www.maxadds.com The biggest problem I'm having is trying to figure out the login. There's a login box where you enter your myspace friend ID. When you type it in, your myspace display picture is automatically added into a part of the website, usually the 'free train'. The picture also links to your myspace page so others can add you. I'm not sure how to go about doing any of this, so if anyone could help I'd greatly appreciate it. Thanks I just made my website - http://www.lucaschu.com to showcase my film work. I'm know little to nothing about HTML and have just modified someone elses. The left sidebar says RSS and ARCHIVE. I want to replace RSS and ARCHIVE with ABOUT and CONTACT. So in my HTML I found this: <!--{block:IfShowRSSAndArchiveInSidebar}--> <h2><a href="{RSS}">{lang:RSS}</a></h2> <h2><a href="/archive">{lang:Archive}</a></h2> <!--{/block:IfShowRSSAndArchiveInSidebar}--> The above HTML seemed to be controlling my sidebar so I modified it to this: <!--{block:IfShowRSSAndArchiveInSidebar}--> <h2><a href="/about">{lang:About}</a></h2> <h2><a href="/contact">{lang:Contact}</a></h2> <!--{/block:IfShowRSSAndArchiveInSidebar}--> I was trying to make the ABOUT icon link to lucaschu.com/about & the CONTACT icon to lucaschu.com/contact The CONTACT was successful but the ABOUT failed. The word ABOUT just didn't show up. I suspect it has to do with the RSS? Help me to do this! How do you change language in websites? If there are any codes or a procedure please help. I have a band in which I made a banner for. Here is an example HTML Code: <a href="http://www.myspace.com/goodbyesunshinetheband"><img src="http://www.jacobkelleydesigns.com/myspace/profiles/goodbyesunshine/bannerrect.gif" alt="" border="0" /></a> Is there any PHP or HTML Script I can use to view how many pages contain that code or image? Preferably on myspace, I'd like to see how many people use our banners. Hope I made any sense, hehe -Jacob Is it good to organize a website using tables? I'm beginning to word on a website that used tables to organize everything. What's your opinion on it? I've tried searching on google but I always come across a lot of sites where you have to pay for stuff. Ok, here's my thing... I'm not a professional web designer or anything. I only do websites for myself and friends if they need. I'm more old school with it, meaning I type out the HTML codes myself mostly. I learned about webdesigning back in like 1997 when I first got on the internet. So now i either make very basic websites in photoshop or I use templates. I see soo many nice websites being created now and i really want to learn alot of the advanced stuff that people are using to design their websites now, especialy these fan made websites for these singers and actors. Examples: http://www.amerieweb.com http://www.a-peet.org http://www.brittany-charm.org Anyway, do any of you know good tutorial sites? Do I need Dreamweaver and other programs to design like these sites? Thanks in advance. Does anybody here have any examples of websites constructed ONLY using HTML/CSS? I would like to look at the source code and the files, and see how it's been made. Ok, I am building my own site and I am getting hung up on little glitches that I don't know how to fix. Posting on this forum is not effective enough. I want to hire a service that will answer and help me fix the glitches on my site. Any suggestions? Looking for partners for my 400 finance sites pm me please, what do you think of http://www.spam.com Cheers, Brokers Online I have had a few sites that I have helped people with getting flagged as having a virus from Norton. Here are a few: http://artizan.bdcwebdesign.com/ http://picassogate.com/ I am not sure what code is being detected as having viral signatures. Does anyone have an idea? Hi guys I'm thinking of making a mobile friendly version of my karaoke show site. Mainly I'd like to offer a mobile friendly version of my songlist. I was wondering what the main differences are between a mobile site like this: https://www2.my.commbank.com.au/mobile/i/default.aspx And the app version of the above banking site? I don't have a smart phone yet, so can't check myself, but will be getting one soon to aid in the site development. Does anyone know of a good tut on making mobile sites that fit the screen of a mobile? Cheers Shaun |