Discovered a Bug in the Web Application
I encountered a small bug in my Computer Concepts web app while I was doing the assignment using the app. It seems to always output a forward slash in front of each single quote on the print layout table. Please refer to the following screenshot if you don’t know what I’m talking about.
Forward slash bug. Click the image to enlarge
Thankfully, I found this post in the Dev Shed forum that provide a native PHP function to remove the forward slashes. I applied the function stripslashes($string) to the output value and the forward slashes are now gone.
Here is the updated source code for anyone who downloaded my last source code:
http://www.robbychen.com/cs110/worksheet_sourcecode.zip
If you find more problems while using the app, please leave a comment. I will fix it as soon as possible. Thanks.
There are no posts related to Discovered a Bug in the Web Application.
Thanks Robby for sharing this information regarding bug. Bugs are there in all apps. But finding and correcting it is the main thing.