when i try this
@pizzatypeandvalue = split (/"+"/,$element );
i get no error,but page just sits and waits and nothing is returned to the browser until it time outs.
when i try this
@pizzatypeandvalue = split (/+/,$element );
i get internal server error and when i run the file in shell it tells me,
"Quantifier follows nothing in regex; marked by <-- HERE in m/+ <-- HERE / at ops.cgi line 273."
when i try this
@pizzatypeandvalue = split (//+/,$element );
i get no error,but page just sits and waits and nothing is returned to the browser until it time outs.
Please can you help