Forum Discussion
JoshuaCase
6 years agoQrew Cadet
Mark,
I have run into an issue now of course. How do I tie my code past the third line?
Currently, I have:
$URLONE & "&rdr=" &
URLEncode($URLTWO)&
URLEncode("&rdr=" & URLEncode($URLTHREE))&
URLEncode("&rdr=" & URLEncode($URLFOUR))&
URLEncode("&rdr=" & URLEncode($URLFIVE))
I get an error and only 3 tasks get created. I assume I am missing the correct redirect pattern but I can't figure it out. Am I limited to only 3?
------------------------------
Joshua Case
------------------------------
I have run into an issue now of course. How do I tie my code past the third line?
Currently, I have:
$URLONE & "&rdr=" &
URLEncode($URLTWO)&
URLEncode("&rdr=" & URLEncode($URLTHREE))&
URLEncode("&rdr=" & URLEncode($URLFOUR))&
URLEncode("&rdr=" & URLEncode($URLFIVE))
I get an error and only 3 tasks get created. I assume I am missing the correct redirect pattern but I can't figure it out. Am I limited to only 3?
------------------------------
Joshua Case
------------------------------
MarkShnier__You
Qrew Legend
6 years agoHere is the generic format for up to 7 redirects. Slice off as much of the salami as you need. I have no idea why the nesting of the URLEncoding is required, but it just is.
$URLONE
& "&rdr=" & URLEncode($URLTWO)
& URLEncode("&rdr=" & URLEncode($URLTHREE))
& URLEncode(URLEncode("&rdr=" & URLEncode($URLFOUR)))
& URLEncode(URLEncode(URLEncode("&rdr=" & URLEncode($URLFIVE))))
& URLEncode(URLEncode(URLEncode(URLEncode("&rdr=" & URLEncode($URLSIX)))))
& URLEncode(URLEncode(URLEncode(URLEncode(URLEncode("&rdr=" & URLEncode($URLSEVEN))))))
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
$URLONE
& "&rdr=" & URLEncode($URLTWO)
& URLEncode("&rdr=" & URLEncode($URLTHREE))
& URLEncode(URLEncode("&rdr=" & URLEncode($URLFOUR)))
& URLEncode(URLEncode(URLEncode("&rdr=" & URLEncode($URLFIVE))))
& URLEncode(URLEncode(URLEncode(URLEncode("&rdr=" & URLEncode($URLSIX)))))
& URLEncode(URLEncode(URLEncode(URLEncode(URLEncode("&rdr=" & URLEncode($URLSEVEN))))))
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
- JoshuaCase6 years agoQrew CadetThank you!!
------------------------------
Joshua Case
------------------------------