Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Wait just so I understand, the only thing that changes is the meternityColor/slimmingColor?
-
Creepper1218yThe problem is that he made code twice as long as it should be, here is an example:
<?php If ($i = 1): ?>
<input ... value="<?php echo $i ?>">
<?php else if ($i = 2): ?>
<input ... value="<?php echo $i ?>">
<?php endif; ?>
He cound just done this:
<input ... value="<?php echo $i ?>">
That is what I thing is the "problem". Please correct me if I'm wrong.
P.S. it is pain in the ass to write code on mobile... -
I never knew how programming looks like as a career. Apparently you edit someone's code and raging around
-
Creepper1218yMe neither, never worked for company or something, I mean even if I wanted I couldn't(Im 16 yo)
I want catch previous developer and cut his finger off. If you don't know hot the job should be done don't do that job.
undefined