PHP - Php Converts '@' To '-'
Hi.
I have this line of code: $b = '@'; Similar TutorialsI am trying to assign a text value to an XML node. $Data->nodeValue = '<xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include" href="cid:'.$URN_UUID_ATTACHMENT.'" />' The resulting xml is: Code: [Select] <Data><xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include" href="cid:urn:uuid:1294192877" /></Data> is there a way to generate this instead: Code: [Select] <Data><xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include" href="cid:urn:uuid:1294192877" /></Data> Im trying to auto download html pages from the net. Their sports picks.. basically I am doing this through cron. So I dont need to touch it when its figured out. Ok .. ive looked at lots of days bettwen dates scripts.. but I need this below.. say December 10th is the last day.. and today its October 14th. now theres dark days every tuesday and wednesday.. the html links are link www.blablba.com/nhl/146.html basically 146 is todays number.. oct 14.. so it being friday.. we will have sat which will be... 147.html .. then sun 148.html then mon 149.html... skip tues skip thursday.. then friday should be 150.html all the way up to december 10th. Does anyone have a smart way to script this? I was either thinking date = the number or automatically letting each date figure out the page number every day. lol is this even make sence?? sorry if not. How about.. I need the days from today till december 10th to count how many days have passed.. excluding tuesdays and thursdays.. then I'll just make oct14th = 146 then todays number = current number from date + oct14th |