Jump to content

redbullmarky

Staff Alumni
  • Posts

    2,863
  • Joined

  • Last visited

    Never

Everything posted by redbullmarky

  1. [!--quoteo(post=368116:date=Apr 24 2006, 08:45 PM:name=SemiApocalyptic)--][div class=\'quotetop\']QUOTE(SemiApocalyptic @ Apr 24 2006, 08:45 PM) [snapback]368116[/snapback][/div][div class=\'quotemain\'][!--quotec--] There are some limited scripts [a href=\"http://www.weather.com/services/oap.html?from=footer&ref=/\" target=\"_blank\"]here at weather.com[/a] that let you display a templated thing on your site with weather reports - Maybe you could dump it into a variable and extract what you need that way? [/quote] lovely, that's actually one i never came across when i was looking. only problem i can see in advance is that the 'customisable' ways are paid for methods - possibly not ideal as it's for a project that's not for myself. seems like it doesn't allow us non-US users to sign up without making a bogus address, but we shall see... i'll have a good look though, looks interesting. cheers SA! Mark
  2. [!--quoteo(post=367879:date=Apr 24 2006, 08:15 AM:name=ypirc)--][div class=\'quotetop\']QUOTE(ypirc @ Apr 24 2006, 08:15 AM) [snapback]367879[/snapback][/div][div class=\'quotemain\'][!--quotec--] Why don't you look into Google Maps API [a href=\"http://www.google.com/apis/maps/\" target=\"_blank\"]http://www.google.com/apis/maps/[/a] [/quote] i was looking at this the other day: [a href=\"http://www.web-max.ca/PHP/\" target=\"_blank\"]http://www.web-max.ca/PHP/[/a] depends on the extent of the mapping, zoop, detail, etc, but there is a 4 part tutorial on mapping which is fairly easy to follow too. cheers Mark
  3. hi all does anyone know of or use any services that allow you to put the weather (depending on location) on your site? i came across this one which although American, deal with worldwide weather: [a href=\"http://www.weather.gov/\" target=\"_blank\"]http://www.weather.gov/[/a] which seems to have access to various weather data, however they make it look ridiculously hard to implement it, using FTP, weather terminology, etc. put just a simple API to which i pass a city (worldwide, not just specifically US/UK) and get in return the temperature, forecast, etc. I even tried the UK Met office, but the licence fees to access the data can get well out of control and is only available for private companies and not individuals. hope someone can help Cheers Mark
  4. [!--quoteo(post=367873:date=Apr 24 2006, 08:06 AM:name=KDragon)--][div class=\'quotetop\']QUOTE(KDragon @ Apr 24 2006, 08:06 AM) [snapback]367873[/snapback][/div][div class=\'quotemain\'][!--quotec--] I've got this code that does pretty much what I would expect it to do, which is print out the same text over and over, darkening each line of text from white to black. Now that I got that to work I was going to move on to building an algorithm to fade the same line of text from white to black. But i realize that part of my algorithm would probably be printing out the text at the color it's at and then replace it with the next darkest shade of text. So before I go about writing this next step of my code, i would just like to know if it's even possible to do this with purely PHP and no help from any javascript etc. Basically, is it possible to echo something out to the page for some period of time, remove it and replace with something else?? [/quote] yes, if you wanted a page reload in between each shade of the colour fade....very unlikely. otherwise, nope. your only and best way is via javascript.
  5. [!--quoteo(post=367728:date=Apr 23 2006, 06:42 PM:name=Amanda Griffiths)--][div class=\'quotetop\']QUOTE(Amanda Griffiths @ Apr 23 2006, 06:42 PM) [snapback]367728[/snapback][/div][div class=\'quotemain\'][!--quotec--] I'll look aroubnd and try and find out what you are going on about with the config.php as i dont understand, and i should imagine your patience is wearing a bit thin with me know :) [/quote] sorry i may have not been clear on this. its just something i do personally when dealing with things like this. basically i have a config.php which i store stuff that's used sitewide. bit like having a CSS stylesheet that stores all your styles - well config.php stores all my settings, including paths. for example: config.php [code] $upload_path = "c:/domains/xxxxxxxxx/wwwroot/images/"; $upload_path_url = "http://www.mysite.com/images/"; [/code] in your file that deals with the file upload/saving/retrieval, etc, you would just have: [code] <?php include_once('/path/to/config.php'); ...rest of code here ?> [/code] all it does is just keeps things consistent and in one place, and would remove the need to store full paths in your database. if you moved servers or changed directory names or anything else, all you would need to do is to change the settings in config.php file, rather than having to manually change every record in your database.
  6. well the way you've stored your paths is relative to the server root, so is not a URL. the <img> tag needs a URL or a path relative to the site/file. eg: <img src="http://site.com/images/image.jpg" /> or <img src="/images/image.jpg" /> or <img src="../images/image.jpg" /> the 'basename' function you used should do the trick. just do: [code] <?php // following line could also be http://mysite.com/images/ $upload_path = "/images/"; ... get the database stuff here ... $filename = $upload_path.basename($my_data['path']); ?> <img src="<?php echo $filename; ?>" /> [/code] that should give you a better idea [b]edit[/b]: also, i wouldnt recommend you store anything other than the filename in the DB anyway. if you ever change your server or directory names, all the DB filenames will be broken links. if you store the path in variables (for example, in a config.php file which you include into your pages as required), then all you need to store in the DB is just the filename (eg, myimage.jpg and not c:/blahblah/blah/wwwroot/images/myimage.jpg)
  7. [!--quoteo(post=367717:date=Apr 23 2006, 05:51 PM:name=Amanda Griffiths)--][div class=\'quotetop\']QUOTE(Amanda Griffiths @ Apr 23 2006, 05:51 PM) [snapback]367717[/snapback][/div][div class=\'quotemain\'][!--quotec--] Thanks Mark, The post statements did the trick. I just need to figure out the best way of calling the info back and displaying it on screen. I don't suppose you have a line or 2 of code to set me in the right direction, as i'm not sure about how to disp[lay the uploaded image via the link which is stored in the db. Many Thanks again [/quote] Hi Basically: (ignore the syntax i've used - its purely to give an idea...) [code] the php bit: <?php $query = "select * from the_database where id = '$the_image_id_i_want'"; $result = mysql_query($query); $picture = mysql_fetch_assoc($result); ?> the html bit: <img src="<?php echo $picture['path']; ?>" /> [/code] the only thing to watch in the above example is how the 'path' was stored in the DB in the first place. i.e, is it a URL (http://blahblah.com/images/blah.jpg) or a full path (i.e, /myserver/wwwroot/blah.jpg). if it's the former, your fine.
  8. i don't get this bit. [code] $fileArtname = $_FILES['userfile']['artist_name']; $fileAlbtitle = $_FILES['userfile']['album_title']; $fileAlbinfo = $_FILES['userfile']['album_info']; [/code] artist_name, album_title, etc, arent proper values for the $_FILES array. maybe you should be using $_POST['album_title'], $_POST['album_info'] , etc, instead... cheers Mark
  9. hi, not sure what error youre getting, but i'm guessing it's gonna be a permissions thing. have you made sure that the c:/...blahblah.../images directory is 'writable' by the script? by default, it wont be, so you'll need to change this so that you can write to the images directory. try that first, see how it goes, then onto round two... cheers Mark
  10. if you omit the 'index.php'/'index.htm' part, they will just default to that. so in your above example, it is equivalent of: [a href=\"http://www.domain.com/account/login/index.php?continue=redirect_url\" target=\"_blank\"]http://www.domain.com/account/login/?continue=redirect_url[/a] as for redirecting afterwards, the $_GET array and 'header' function is used. [code] $redirect_to = $_GET['continue']; header("Location: $redirect_to"); exit; [/code] cheers Mark
  11. [!--quoteo(post=367686:date=Apr 23 2006, 03:28 PM:name=Amanda Griffiths)--][div class=\'quotetop\']QUOTE(Amanda Griffiths @ Apr 23 2006, 03:28 PM) [snapback]367686[/snapback][/div][div class=\'quotemain\'][!--quotec--] I can store the uploaded file into the images directory on the webserver, but then i don't know how to store the link to the image into the database Many Thanks [/quote] hi if you've used move_uploaded_file to do the job (which it sounds like you have), then youre half way there. the second parameter you use (ie, the destination path/filename) is all you need to store and retrieve when you need it. generally when i'm storing images on my server (from uploads) i keep the upload path the same (and set by a variable in an include file, such as $upload_path), so then all i need to store in my database is the destination filename and not any path information. when i wanna retrieve them, i can either reference them as a url (ie, [a href=\"http://www.mysite.com/uploads/\" target=\"_blank\"]http://www.mysite.com/uploads/[/a][b]myimage.jpg[/b]) or as a full path (/myserverpath/public_html/uploads/[b]myimage.jpg[/b]). is it the actual mysql stuff youre having trouble with? cheers Mark
  12. [!--quoteo(post=367683:date=Apr 23 2006, 03:18 PM:name=Amanda Griffiths)--][div class=\'quotetop\']QUOTE(Amanda Griffiths @ Apr 23 2006, 03:18 PM) [snapback]367683[/snapback][/div][div class=\'quotemain\'][!--quotec--] Hi all, Please could somebody help me to store an image link in mysql database instead of storing the actual image. EG. users uploads file which goes into images folder on webserver, and at same time, a link to it gets saved in the db for future reference. Thanks [/quote] Hi Which part are you stuck on? are you able to upload the file to the correct place on the web server? if so, then it's simply a case of saving the filename you used within 'move_uploaded_file' in your database, along with any other information from the $_FILES array you want (such as size, type, original filename, etc). if you can give a better idea of which part you're having trouble with, it maybe easier to help you out. cheers Mark
  13. i can't really say much, as it has been said before. but your site is now looking much less like a 'parking' site and more like something that's useful. whilst the layout is very simple, sometimes i think it's just too simple. orange is very dominant colour so you really have to be careful with its use. i think with a bit more thought behind the initial page in terms of style and layout, you'll have a better result on your hands. look at google. probably one of the most simple homepages on the web, but in no way overkill or bland.
  14. [!--quoteo(post=367647:date=Apr 23 2006, 10:27 AM:name=skhale)--][div class=\'quotetop\']QUOTE(skhale @ Apr 23 2006, 10:27 AM) [snapback]367647[/snapback][/div][div class=\'quotemain\'][!--quotec--] I'm not sure why people are suggesting AJAX as an answer. Using AJAX would limit you to the clients who have javascript turned on. [/quote] i actually agree with skhale on this one to a big extent. there are also actually plenty of php based forums that you could use (phpbb, invision, etc) that would save you the trouble of trying to use two totally different technologies at the same time. i dont know what i'd think if i noticed a sites pages being fed to me in a mixture of php and asp. at the end of the day, if i've got you correctly, all we're talking about is showing the top forum posts on your front page. in this case, if you really do wanna keep a mixture of php and asp, the issue of the two languages 'talking' to eachother doesnt really even come into it. depending on the database technology your forum uses, it's just a matter of putting together a php script or two that will read directly from this database and output the results. apologies if i've missed the point, it just seems like a fairly simple workaround.
  15. [!--quoteo(post=367469:date=Apr 22 2006, 04:47 PM:name=jasonc)--][div class=\'quotetop\']QUOTE(jasonc @ Apr 22 2006, 04:47 PM) [snapback]367469[/snapback][/div][div class=\'quotemain\'][!--quotec--] www.wordofmouthdisco.co.uk I am having trouble sending data to a DIV. Please could someone take a look and tell me how simple it is to fix ! I have been trying to get the left hand frame change the text in the bottom right hand box. from '<p>qwerty</p>' to '<p>asdfgh</p>' thank you in advance for your help. [/quote] unless i'm madly wrong, this is going to be a Javascript solution, not php, and the javascript function 'InnerHTML' springs to mind.
  16. [!--quoteo(post=367426:date=Apr 22 2006, 10:59 AM:name=lin)--][div class=\'quotetop\']QUOTE(lin @ Apr 22 2006, 10:59 AM) [snapback]367426[/snapback][/div][div class=\'quotemain\'][!--quotec--] sorry my mistake what i should of wrote was when you have [a href=\"http://www.domain.com/folder/\" target=\"_blank\"]http://www.domain.com/folder/[/a] the index page displays with out showing file index.php. Say i had a url of [a href=\"http://www.domain.com/folder/?continue=skasjasd\" target=\"_blank\"]http://www.domain.com/folder/?continue=skasjasd[/a] is it possible to take the / out between the folder directory and ? so it looks like this [a href=\"http://www.domain.com/folder?continue=skasjasd\" target=\"_blank\"]http://www.domain.com/folder?continue=skasjasd[/a] thanks [/quote] might be worth you having a look on google or through phpfreaks for 'mod_rewrite' if you're using apache as your webserver. as long as it's within your domain, you could literally allow almost ANYTHING to pass as a valid URL.
  17. the term "Jack of All Trades, Master Of None" springs to mind when reading that quote of yours. you're actually going off on massive tangents when it's totally unnecessary. what do you want to code? games or websites? if its the former, then youre in the wrong place. if its the latter, then quit talk about C++ and all these other things you seem to be getting fed from somewhere. ok - HTML is what you know already, along with bits of javascript, etc. pick a server side language. i'll suggest PHP as youre on phpfreaks, but ASP/JSP are others. dont learn them all. you'll be able to pick them up quick enough if you need to, on the condition that you know one. pick a database language. MySQL is the only one necessary. the others are pretty much all designed to do the same thing. phpmyadmin will help you create and maintain it, but reading/writing, etc is down to your PHP code. using the 3 above - you can create a dynamic site that looks the absolute dogs b***ocks, and even use AJAX and all the other stuff you go on about learning. dont get bogged down in what else there is - just get bogged down with what you need. you will only ever know what you really need when you actually pull your finger out and start putting some of this stuff to practice. otherwise, youre totally wasting your time.
  18. [!--quoteo(post=367312:date=Apr 21 2006, 10:03 PM:name=businessman332211)--][div class=\'quotetop\']QUOTE(businessman332211 @ Apr 21 2006, 10:03 PM) [snapback]367312[/snapback][/div][div class=\'quotemain\'][!--quotec--] thanks so where do I get this phpmyadmin, this is going to be something I can create databases on my computer, and then I just upload the databases onto there server like I would if I were loading an xhtml, or css file. Let me know thanks. [/quote] [a href=\"http://www.phpmyadmin.net/home_page/index.php\" target=\"_blank\"]http://www.phpmyadmin.net/home_page/index.php[/a] although if your host has mysql support but doesnt have phpmyadmin installed for you, i'd be very very surprised. phpmyadmin is written in php, so to run it off your computer you will need to have a complete WAMP/LAMP installation. as i said before tho, youre more likely to have access to it from your host's control panel.
  19. the only thing i'd probably suggest is the error_reporting level in the php configuration is set a bit higher than your old host. whilst i may get slated for this, it's safe enough to ignore notices. a bit of an addition of a htaccess file or using [code]ini_set('error_reporting', 2039);[/code] would mean that notices are ignored. they're more 'Good practice' notices rather than anything that's gonna cause you problems, and in your case because the variable(s) you are trying to access ($_GET['whatever']) havent been defined beforehand. if you want to go down the road of perfect practice, look up 'isset' function. [a href=\"http://www.php.net/isset\" target=\"_blank\"]http://www.php.net/isset[/a] hope that helps a bit Cheers Mark
  20. [!--quoteo(post=367307:date=Apr 21 2006, 09:51 PM:name=businessman332211)--][div class=\'quotetop\']QUOTE(businessman332211 @ Apr 21 2006, 09:51 PM) [snapback]367307[/snapback][/div][div class=\'quotemain\'][!--quotec--] so then where does mysql come in, I am glad you are here I have tried sorting this out for weeks, but you are making it make sense, I have heard of that myadmin, and I don't host my own, I just work for people off there servers, and some lady asking me to "mantain her server" whatever that means. But where does MySql and all those other names quik, and sql, and postgresql, where do these come in you said you use mysql, what do you mean. Is it the way it connects, and if that's true then those are just different tags to connect to the database, but if thats true then sql isn't a language right [/quote] its as much a language as anything else. consists of rules and basic syntax and the way you organise or use these will vary the output. don't be too confused with all the different versions. having mysql, prostgresql, mssql, etc, etc is no different to having BASIC, BBC Basic, visual BASIC, etc,etc. its just a bunch of different people who have a slightly different take on what's ultimately the same thing - Structured Query Language. MySQL (or any of it's alternatives) just kinda sit on the web server to serve data. Look at Apache or IIS as the program that serves web pages, and MySQL/whatever as the program that serves database data. Apache is different to IIS in many ways, but they both do the same thing. Mercs are different to BMW's but they both do the same thing. [!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--] I read your edit I think that sounds better, than trying to cram in every language before I start my first project, I think I will just when I get photoshop I will get a lot better with manipulating photos and banners, and logos so I can do my own stuff, and I Will finish studying php, sql, then get my javascript and css better, and then start working on my projects there, and just start working on flash on the side, to be able to do intros, and then just learn the rest down the road in my spare time. [/quote]well like i say, i'm not going to knock you if you wanna learn every language under the sun, but just watch that it doesnt effect your enthusiasm to keep at it.
  21. [!--quoteo(post=367300:date=Apr 21 2006, 09:30 PM:name=businessman332211)--][div class=\'quotetop\']QUOTE(businessman332211 @ Apr 21 2006, 09:30 PM) [snapback]367300[/snapback][/div][div class=\'quotemain\'][!--quotec--] I appreciate it, I do test around with php as I go, I already have mastered Xhtml and css, I just need to finish with php and javascript and sql, I have 4 projects I am sitting on but they are all waiting for me to learn. I have one in a few weeks, so I will be utilizing it all then when I start, and start working through the problems as I encounter them, about the databases, you siad you use mysql. That's what I am confused about, do you go into notepad and type up your databases, or do you have to use a program, what program do you use to create your mysql databases, and what do I do if a server I am working on doesn't accept mysql. another question. What all programminga nd coding languages do you know total. [/quote] there are several programs to create databases, but the absolute best (and probably most popular & widespread) is phpmyadmin. free, easy to pick up, and most web hosts have it. (if you host your own sites, its also very easy to install). creating the database is generally done via some form of program/application, such as phpmyadmin as i mentioned, command line tools, or various other ways. the way i work is to just make a DB using phpmyadmin (database itself plus its tables). anything else (adding/updating/deleting records, etc) is all done via my php scripts. [b]edit:[/b]most hosts offer mysql, due to the fact that its both free, strong and popular. if you're hosting your own sites, its easy enough to install. even some of the £2.99 a month hosting packages here are now offering at least one mysql database to play with. myself, i know a lot of BASIC, little bit of Pascal and a fair chunk of C++ and a little Assembly language. for web design - i know a fair deal of PHP, MySQL, (X/D)HTML, CSS, Javascript, and i purely stick to them. I do keep tabs on other languages too, so i'm not being unnecessarily biased, but the ones i mentioned let me get my job and the client requirements done as quick as possible. i like to think that not learning everything leaves me something to learn when i get bored.
  22. [!--quoteo(post=367294:date=Apr 21 2006, 09:13 PM:name=grandadevans)--][div class=\'quotetop\']QUOTE(grandadevans @ Apr 21 2006, 09:13 PM) [snapback]367294[/snapback][/div][div class=\'quotemain\'][!--quotec--] Cheers mate, I have already had to learn CCS, PHP & SQL in the past 3 or 4 months so I think I'll take a break from learning new languages and come back to it in a few weeks. I'll certainly bookmark the site though, thanks for the link. [/quote] it really isnt a new language at all. most of the playing around with AJAX i've done with this rely on doctoring/butchering/messing up the same couple of javascript functions that i first took from a tutorial. if youre prepared to think a little differently to how web applications work, and have an hour (yes, just an hour!) to spare, it'll definitely be worth your while. not just for those funky double underlined links, but for countless other bits. (see the new Yahoo Mail beta version, or Google Calendar for good examples). of course their are other ways of doing it, but they would (if you wanted them to work well) rely on javascript too anyway.
  23. hi businessman one thing i can't knock is your enthusiasm. however, i think your approach maybe shooting yourself in the foot a little bit, if a little unnecessary. i'll ask one question of your first - have you put all of the knowledge you have so far into practice? if the answer is no, then i'd get on to it. if the answer is yes, then i apologise. i'll skim over a few of your questions that i've looked into more recently: [!--quoteo(post=367259:date=Apr 21 2006, 07:18 PM:name=businessman332211)--][div class=\'quotetop\']QUOTE(businessman332211 @ Apr 21 2006, 07:18 PM) [snapback]367259[/snapback][/div][div class=\'quotemain\'][!--quotec--] 2. I saw some about ajax, I asked questions about it and was told on this board, it's lightning fast, if a menu is done in ajax you can't even tell when it loads, can ajax be used to create an entire website, if so does it replace xhtml and css, or is it another language that can be used with it. [/quote]lightning fast - i'd agree with that to an extent. put it this way - it's faster than a complete pageload, by miles, which is the whole point of it. grabbing new dynamic data from the server without reloading the page, which before ajax was the traditional method in most cases. AJAX is a mixture of Javascript and XHTML, and is not a replacement for either, never mind CSS. look at AJAX as an 'interface' rather than a new language - it allows a webpage to 'talk' to the server without reloading a page to request the information. [!--quoteo(post=367259:date=Apr 21 2006, 07:18 PM:name=businessman332211)--][div class=\'quotetop\']QUOTE(businessman332211 @ Apr 21 2006, 07:18 PM) [snapback]367259[/snapback][/div][div class=\'quotemain\'][!--quotec--] 4. ok now to php. I have to learn asp and jsp, I just want to know if they are indeed basically the same with different syntax I have had some some very good programmers tell me once they caught on to php, they could utilize the aspects of asp or jsp just by looking around at the syntax they could do basically the same things with a whole lot less effort than the first itme they learnt. [/quote]why do you HAVE to learn asp/jsp? ok agreed, developing upgrades for a client who currently uses ASP/JSP would only be possible if you know the languages, but i think youre learning for learnings sake more than anything practical. but ASP/JSP/PHP all pretty much do the same thing - they run on the server to a specified set of rules (calculations, database reading/writing, user input, etc) and then form the HTML that is sent to the users browser. it's fair to say that once you've learnt one of them comfortably would mean that the others would be easier to grasp. they all work in a very similar way, as do ALL scripting languages. and yes - i'm confident enough to say that anything that can be done in ASP can be done with PHP, and vice versa. [!--quoteo(post=367259:date=Apr 21 2006, 07:18 PM:name=businessman332211)--][div class=\'quotetop\']QUOTE(businessman332211 @ Apr 21 2006, 07:18 PM) [snapback]367259[/snapback][/div][div class=\'quotemain\'][!--quotec--] 5. I am confused about databases. I found out msaccess creates database, that isn't learning sql though, sql is produced from a database, can I create a database from scratch in a wordpad, like I can a css file, or a php file, or do I have to have a database program, if so what's the point of me learning the sql language if I don't need it to create databasing. If so which database program do I need, I will get oracle once my freelancer career gets taken off enough but for now what is the second best I can get, and what is the best version of oracle available. [/quote] as with the PHP vs ASP, Mac vs PC, OSX vs Windows debates, there is no right or wrong answer here. the point of SQL is that it's a tried and tested method to read and write data to/from a database very very quickly. there are loads of options - mysql, mssql, postgresql, oracle, etc but they all do the same thing. mysql works for me because its open source, easy to get the basics, good to get complicated with, etc, etc. i havent bothered to learn any of the others because (and this is the reason why you should calm down and reevaluate what youre trying to achieve with all this) i havent needed to and i havent been given a good enough justification as to why i should digress. if you really must master the similarities between the SQL versions, etc, then do what i did. download a copy of phpbb or another open source package that uses alot of databasing, and have a look at their files for handling each of the different types of database system. not to knock you or tell you what to do, but i reckon you should seriously start putting this knowledge of yours into action. there's no better explaination than the desired result coming up on your screen. hope that helps a bit cheers Mark
  24. [!--quoteo(post=367251:date=Apr 21 2006, 06:38 PM:name=Sinfullilblonde)--][div class=\'quotetop\']QUOTE(Sinfullilblonde @ Apr 21 2006, 06:38 PM) [snapback]367251[/snapback][/div][div class=\'quotemain\'][!--quotec--] I added an include in a .tpl file - it works perfect in all browsers but Internet Explorer...Can someone tell me what I'm doing wrong? I have tried everything but it just doesn't want to work for me in IE.. Thanks in advance... <? include("/inc/includes/random.php") ?> [/quote] whats the error you get? what package are you using? you'll need to be a little more specific with your problem. cheers Mark
  25. [!--quoteo(post=367243:date=Apr 21 2006, 06:14 PM:name=grandadevans)--][div class=\'quotetop\']QUOTE(grandadevans @ Apr 21 2006, 06:14 PM) [snapback]367243[/snapback][/div][div class=\'quotemain\'][!--quotec--] Hi all. Does anybody know how the double underline links work. I would love to be able to use them for my site. [/quote] the 2006 buzzword - [b]AJAX[/b]. [a href=\"http://www.ajaxfreaks.com\" target=\"_blank\"]http://www.ajaxfreaks.com[/a]
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.