Note that there are some explanatory texts on larger screens.

plurals
  1. USShroder
    primarykey
    data
    text
    plurals
    1. This table or related slice is empty.
    1. COIt requires a little more leg work to generate the DQL statements through an API I'm building. I'll need to detect if the property is actually a joined table, opposed to a property and generate the join from there. In addition, I'm unsure what implications calling a JOIN on an object that already has mapping for that relationship will do. Does it become a partial object? Does it have a performance hit? These questions go out of scope of my original question, so I can repost if needed.
      singulars
    2. COI see @Elon Than got your form working. If you're good with the form working as is, then I guess no need to respond. What probably caused the initial issue is `echo $formproc->GetSelfScript(); echo htmlentities($_SERVER['PHP_SELF']);` in the form action. `$_SERVER['PHP_SELF']` contains the path to the current script. I imagine `$formproc->GetSelfScript()` does the same, so you end up with the URL you have. If you remove `echo htmlentities($_SERVER['PHP_SELF']);`, then you should just have "contactus.php".
      singulars
    3. COIt sounds like it's not hitting the redirect. I would try having the script exit right before the redirect to see if it's getting there. If it is, then check the network log from one of the debug tools I listed to see if it's going to thankyou.php at all. In regards to the CSS, I think this is because of the URL "contactus.php/contactus.php". The first "contactus.php" is treated as a directory, which messes with relative URLs (styles.css vs /styles.css). It would be good to clean up that URL.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload