CMS Builder Head code interfering with Form code
6 posts by 3 authors in: Forums > CMS Builder
Last Post: January 26, 2010 (RSS)
thanks
form page: http://www.gaalliance.org/bap/comments-prep.php
form destination: http://www.gaalliance.org/bap/comments-confirmed.php
Creative Director
JAM Graphics
Re: [jtedescojam] CMS Builder Head code interfering with Form code
By Dave - January 26, 2010
Can you attach both php pages so we can see the code?
Thanks!
interactivetools.com
Re: [Dave] CMS Builder Head code interfering with Form code
thanks
Creative Director
JAM Graphics
Re: [jtedescojam] CMS Builder Head code interfering with Form code
By Chris - January 26, 2010 - edited: January 26, 2010
I don't think the errors you're getting have anything to do with CMSB-related code on that page. They're all coming from lines 264-317, which is where you're generating a string to send to mail():
Notice: Undefined variable: Section in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 264
Notice: Undefined variable: Question in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 268
Notice: Undefined variable: text in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 271
Notice: Undefined variable: proposed in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 274
Notice: Undefined variable: reason in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 277
Notice: Undefined variable: radio2 in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 281
Notice: Undefined variable: page2 in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 283
Notice: Undefined variable: Section in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 284
Notice: Undefined variable: Question in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 288
Notice: Undefined variable: Text in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 291
Notice: Undefined variable: Proposed in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 294
Notice: Undefined variable: Reason in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 297
Notice: Undefined variable: radio3 in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 301
Notice: Undefined variable: page3 in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 303
Notice: Undefined variable: Section in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 304
Notice: Undefined variable: Question in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 308
Notice: Undefined variable: Text in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 311
Notice: Undefined variable: Proposed in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 314
Notice: Undefined variable: Reason in /hermes/web07/b2561/as.gaalliance/public_html/bap/comments-confirmed.php on line 317
Try replacing each of your variables in that string:
Section: $Section-Heading1
with:
Section: ".@$_REQUEST['Section-Heading1']."
I hope this helps! Please let me know if you have any questions.
Chris
Re: [chris] CMS Builder Head code interfering with Form code
SORRY :(
Creative Director
JAM Graphics
Re: [jtedescojam] CMS Builder Head code interfering with Form code
By Chris - January 26, 2010
Chris