February 24th, 2010 07:47 PM
my big question is if I had such a line, would browsers and reads reconginze it as an RSS feed?
January 13th, 2010 08:43 PM
yes, use XMLHttpRequest to connect a server side script like php on your server, and that script use normal transfer protocol to fetch the data.
January 12th, 2010 04:44 PM
you could describe is XML is to XHTML as SGML is to HTML
January 12th, 2010 04:25 PM
Which pre-existing libraries do you recommend? as reinventing wheels is not a good thing 8)
January 8th, 2010 06:38 PM
Which in returns cost money if you want it to index more then 50 pages.
January 7th, 2010 02:47 PM
But does not index all the pages it crawls (only has about half his pages index. even if he get new pages index quite quickly)
and I do know it does not religh on a sightmap, but even Google say a...
January 6th, 2010 10:53 PM
IIRC XMLHttpRequest can only request pages from site it's served from (so unless the java script in on twitter.com it can't fetch from twitter.com
January 6th, 2010 10:51 PM
Namely you can't count on them indexing all your pages. Even with a sitemap.
January 6th, 2010 01:29 PM
Using google's search still relies on Google indexing all your pages.
December 29th, 2009 01:08 PM
My next test would be to echo out each $line, then $text itself just so I could be sure I'm dealing with the strings I think I'm dealing with.
December 29th, 2009 10:27 AM
you are goinging to need to be a more specific.
December 28th, 2009 05:15 PM
$text = $_POST['text'];
$users = array();
$pass = array();
$data = explode(explode("/\r\n|\r|\n/", $text); //split text area by line
foreach($data as $line)
{ list($users[], $pass[]) =...
December 28th, 2009 04:20 PM
.form input:focus
{ background-color:#FF6666; }
December 27th, 2009 10:13 PM
You want to set the "Line-height" to use vertical-align
http://www.student.oulu.fi/~laurirai/www/css/middle/
December 27th, 2009 09:29 PM
Actually you will get better speed out of change the class name and letting CSS change the style then the change the style direct (except in opera), but again a client side issue.
...
December 27th, 2009 09:25 PM
I use OOP in PHP when I'm working with DOM especially with XML because I'm already interacting with object it easier to keep that mode.
but small things as Peej said it a waste to both with
December 27th, 2009 09:16 PM
This is Client, not server side.
This simplest form ins simply the "title" attribute. such as
<abbr title="As Soon As Possable>A.S.A.P.</abbr> or
<a href="http://www.example.com" title="this...
December 16th, 2009 07:48 PM
I would normally do it via Dom
where is you root tag?
<?xml version="1.0" ?>
<items>
<item text="directory1">
<item text="directory2">
December 16th, 2009 11:21 AM
you proble want to use client size Javascript rather than server side code for this. Server side would require reloading to the best of my knowledge.
December 16th, 2009 11:17 AM
Way to tell if the code is XHTML or HTML
HTML the tags are not case senstive, xhtml tages are case senitive and all lower case.
HTML allows unclosed tages, xhtml does not
single sided tag...
December 12th, 2009 10:03 AM
I was i was coming up with Stats() with my search terms but thank you.
December 11th, 2009 04:34 PM
Is there a function the will allow me to load the dimensions of an image file?
December 6th, 2009 03:05 PM
I document chnages to my website in news.xml with the following format:
<!DOCTYPE news [
<!ELEMENT news (item*)>
<!ELEMENT item (title,date,detail)>
<!ELEMENT title (#PCDATA)>
...
December 1st, 2009 02:30 AM
It was resolved via
if ($sort == "artist") usort($artistarray, array("RefItem","cmp_artist"));
Though I could not find any documentation on why that was meant to work