what error are you getting?
vb6 or php?
if you are trying to make all that text into a string, and unless it is on a single line, you either need to append it or use line continuations, in either case with required new line characters
orCode:OC = "<?php" OC = OC & "if (!isset($page_title)) $page_title=""PHP code and online MySQL database - example OC username password""; " & vbnewline OC = OC & "if (!isset($page_keywords)) $page_keywords=""free PHP code, mysql sql"";" & vbnewline OC = OC & "if (!isset($page_desc)) $page_desc=""FREE example PHP code and a MySQL database"";" & vbnewline OC = OC & "?>"php does not care about the newlines, except to make it readableCode:OC = "<?php" & _ "if (!isset($page_title)) $page_title=""PHP code and online MySQL database - example OC username password""; " & vbNewLine & _ "if (!isset($page_keywords)) $page_keywords=""free PHP code, mysql sql"";" & vbNewLine & _ "if (!isset($page_desc)) $page_desc=""FREE example PHP code and a MySQL database"";" & vbNewLine & _ "?>"




Reply With Quote