-
Created Help with getting the Alert to Submit the Form
I've added a SweetAlert into an existing upload Form, where upon selecting the Submit button it successfully displayed the pop-up alert. Like so: $('#submit-btn').on('click',function(e){ e.preventDefault(); var form = $('.pt_upld_page_frm'); swal.fire({ … -
Replied To a Post in Help with modal triggered by php if statement and JS
Thanks you for youre reply. Sorry for the confusion. I no longer am looking for help with a modal. And this isn't about sweetAlert, it just about JS. Sorry, for … -
Created Help with closing message box and submiting
I'm trying to add something to this JS, for a successfully working submit Form: $('#upload-form form').ajaxForm({ url: '{{LINK aj/ffmpeg-submit}}?hash=' + $('.main_session').val(), beforeSend: function() { $('#submit-btn').attr('disabled', true); $('#submit-btn').val("{{LANG please_wait}}"); }, success: … -
Replied To a Post in Help with modal triggered by php if statement and JS
Thank you. for your message. I think that might have been the wrong approach. I am now at this point.... I'm trying to get help with closing message box and … -
Created Help with modal triggered by php if statement and JS
This php statement works successfully: if (empty($error) && $_POST['set_p_v'] == 0 && $wallet >=1) { //echo '<script type="text/javascript"> $("#myModal").modal("show")</script>'; $db->rawQuery("UPDATE ".T_USERS." SET `wallet` = `wallet` - 0.50 WHERE $wallet = … -
Replied To a Post in Help with changing price after deduction...
Thanks for that great help. Using your example, I'm trying another one: $wallet = $user->wallet; if ($sell_video == 0 && $wallet >= 1) { $db->rawQuery("UPDATE ".T_USERS." SET `wallet` = `wallet` … -
Created Help with changing price after deduction...
This works successfully: $wallet = $user->wallet; $upwallet = ($sell_video == 0 && $wallet >= 1 ? 0.5 : 0); $db->rawQuery("UPDATE ".T_USERS." SET `wallet` = `wallet`- '".$upwallet."' WHERE `id` = '".$video->user_id."'"); … -
Replied To a Post in re: Instagram, is there any point to putting hashtags...
Thanks for your reply. I posted both places, because I may not get an answer here and may get an answer there, or visa versa. I may get a partial … -
Replied To a Post in re: Instagram, is there any point to putting hashtags...
Yes, I posted there too. I don't understand why you've posted that link -
Created re: Instagram, is there any point to putting hashtags...
Is there any point to putting hashtags in your Instagram profile bio? Will those be found in a search? Can a posting's caption & info be edited after posting? Also, … -
Created How to filter YouTube search results for just USA?
How to filter YouTube search results for just USA? Google search of that question shows: Settings > General > Location > Select your country, but I've done that and still … -
Created Can you please tell me what these lines of code do?
Can you please tell me what these lines of code do? $sub_category = 0; if (!empty($_POST['sub_category_id'])) { $is_found = $db->where('type',PT_Secure($_POST['category_id']))->where('lang_key',PT_Secure($_POST['sub_category_id']))->getValue(T_LANGS,'COUNT(*)'); if ($is_found > 0) { $sub_category = PT_Secure($_POST['sub_category_id']); } } … -
Created Add data to table -
I'm trying to modify a web script. Currently, upon uploading a video, in the upload Form, among other things, the uploader chooses a sub-category and enters tags and then submits/uploads. … -
Created How to show 2nd drop-down field after first drop-down selection is chosen?
I’m trying to modify a web script where a drop-down works successfully. How can another drop-down field appear only after a selection has been made from the first drop-down list? … -
Edited Help with referencing url in code
I am trying to display something on web pages that show this in the url: "sub__" for example: ...com/videos/category/1/sub__536. It was suggested I try this code: $page = basename($_SERVER['PHP_SELF']); if … -
Created Help with referencing url in code
I am trying to display something on web pages that show this in the url: "sub__" for example: ...com/videos/category/1/sub__536. It was suggested I try this code: $page = basename($_SERVER['PHP_SELF']); if … -
Replied To a Post in Can you tell me if this file outputs a subcategory page?
thanks for your reply, but not very helpful -
Created Can you tell me if this file outputs a subcategory page?
This php has subcategory code on line 149 and 215 https://pastebin.com/zgbELKJf can you tell me if this file outputs a subcategory page? -
Created Allow camera access - show camera view -- don’t start recording video
This code below works successfully to capture/record/play video - after camera access permission is granted - when the start button is selected. I'm trying to add the functionality where (after … -
Created Reduce the dimensions of the full recording mobile screen/view
This html web page code, when viewed via mobile device, captures video from the mobile device. By tapping the page, the mobile video full screen appears, ready to begin recording. … -
Replied To a Post in Text Across The Page/Video-Camera-Screen?
Thank you for your reply and for "dug a little deeper", much appreciated, I did see the quote from the link "and they are back in the website". However, this … -
Replied To a Post in Text Across The Page/Video-Camera-Screen?
Regarding: "viewing is playback of a video", this is not about viewing or playback, it is scrolling text when "recording" -
Replied To a Post in Text Across The Page/Video-Camera-Screen?
Thanks for the replies, but I'm not clear if anyone has looked at my link example (via mobile device viewing). I think viewing there and proceeding, would help clarify my … -
Replied To a Post in Text Across The Page/Video-Camera-Screen?
Thanks again for your reply. Regarding "I don't understand what you want entirely", to be understood I put a link on my reply to show exactly what I mean. To … -
Replied To a Post in Text Across The Page/Video-Camera-Screen?
Hi, thank you for your kind reply. I believe your suggestion is for a web page video. My needs is on a web page, that gets tapped via mobile view … -
Replied To a Post in Text Across The Page/Video-Camera-Screen?
Thanks you for your reply. I have created a link to the page that I'm asking about. Apparently it expires in 6 days. I've never used this temporary file hosting … -
Created Text Across The Page/Video-Camera-Screen?
Is it possible to add scrolling text across the page/video-camera-screen? On an html page, it uses this code: accept="video/*" in this context: <input type="file" name="fileToUpload" id="fileToUpload" accept="video/*" capture="user" onchange="submitForm();"> and … -
Created Display 2nd Dropdown > 1st dropdown
I am trying to modify a existing web script's Upload Form where, currently you choose a Category...etc. and Submit. When a Category is chosen, I'd like another dropdown list of … -
Created Help with undefined variable error
I am trying to display some text "THIS IS A TEST" on the html page. I am getting this error: "Notice: Undefined variable: text1 in /home/public_html/themes/videos/content.html on line 23" Here … -
Created Combining ‘earnings’ and ‘wallet’
I am using a php web video script which allows Users to purchase videos successfully. The purchases are made from the amount available in the Users’ 'wallet' (the User can …
The End.