I've picked up a project from another developer and I'm trying to finish and clean up a bit. This part of the code renders products from a database after checking for a language cookie:

                            <?php if (get_cookie('spanish')) : ?>
                                <?php if ($product['details_spanish'] != '') : ?>
                                    <?php $details = explode(':',$product['details_spanish']); ?>
                                    <h3>Especificaciones</h3>
                                <?php else : ?>
                                    <?php if ($product['details'] != '') : ?>
                                        <?php $details = explode(':',$product['details']); ?>
                                        <h3>Especificaciones</h3>
                                    <?php endif ?>
                                <?php endif; ?>

                            <?php else : ?>
                                <?php if ($product['details'] != '') : ?>
                                    <?php $details = explode(':',$product['details']); ?>
                                    <h3>Specifications</h3>
                                <?php endif; ?>

                            <?php endif; ?>
                            <ul>
                            <?php if ($details) : ?>
                                <?php foreach ($details as $detail) : ?>
                                <?php $detail = split(',',$detail); ?>
                                <?php if ($detail[0] != '' && $detail[1] != '') : ?>
                                <li>
                                    <strong><?=ucwords($detail[0])?></strong> : <?=$detail[1]?>
                                </li>
                                <?php endif; ?>
                                <?php $i++; ?>
                                <?php endforeach; ?>
                            <?php endif; ?>

Sorry, I know this is hard to read due to inconsistency and bad coding (not my project initially. What it's doing is checking for a spanish cookie on the users machine. If it finds it, it pulls the values from the spanish column of the table instead of the regular. It falls back on the english value if there is no spanish value in the table. Also, it creates a $details variable that contains one of the values of the database, and splits it where the : is.

The problem I'm having is on some products, it gives me an error saying it can't find the $details variable, I'm assuming it is because the variable doesn't live outside the scope of the first if statement?

I'm a php noob really but even I know this isn't good practice. is there a better way to clean this up and have my $detail variable available?

link|improve this question

OMG!!! you do not need to have a opening and closing PHP tag on every line – Phill Pafford Jan 18 '11 at 21:25
I agree, this wasn't my project originally, so imagine my surprise :( – drpcken Jan 18 '11 at 21:27
feedback

1 Answer

up vote 4 down vote accepted

Quick workaround is to pre-initialize that variable at the very top:

<?php $details = ''; ?>
link|improve this answer
Wow, that fixed about 3 problems I was having! – drpcken Jan 18 '11 at 21:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.