|
I would suggest you make use of the Wordpress helpline, as they are best placed to advise you what tools are available for your specific needs. They may well have some off the shelf back end system which would provide for your database needs, without you needing to hire a database programmer to do it for you.
|
|
|
|
|
I have never used Wordpress before so I could be wrong.
If I understand correctly, MySQL is the core of Wordpress so you already have a database, you will have to find a plugin to save your data to the database, I have found one on google but you will have to pay for it. You can do it yourself but it will require you to learn PHP and SQL.
Have a look at this plugin:
[https://wordpress.org/plugins/ninja-forms/]
modified 12-Mar-20 6:24am.
|
|
|
|
|
To create and maintain a computer database, you need a database program, often called a database management system, or DBMS. Just as databases range from simple, single-table lists to complex multi-table systems, database programs, too, range in complexity.
|
|
|
|
|
Hi team,
I am facing the issue which is when we click on web print is disabled.And I disabled the web print but the issue is when i click on on web print the print dialogue is disappearing instead of the disappearing the dialogue box we can show there empty blank page im trying to do that please help me that.
Thank you
|
|
|
|
|
|
I made a pool 8 ball, in nodejs where 2 players put some amount of money to the server before playing, the server where they send money to my paypal account using the client id and secret, but if a player wins he must earn (his money + the oponent money - as_server_I_take_some); so how can I send money to the winner, is there any implementation or transaction to be saved (I use node js paypal rest sdk).
|
|
|
|
|
|
I have a problem with a push sidebar menu. When the toogle button is clicked the page goes to the right .The problem is that I want the side bar menu to be next to the page just like the example that is in the picture . Also when i scroll down to the page ,I want the side bar menu to be fixed. I am only using css.
https://codepen.io/sb90mng/pen/MWwyOmW[^]
This is the image — ImgBB[^]
|
|
|
|
|
Hi, You should update the code in your question so that it reproduces the problem (so when we click "Run code snippet" we more or less see what's in the image you've provided). For example, it looks like you're using Bootstrap, but that's not in your snippet. You could also replace images with placeholders from placeholder.com. It's hard to tell what the real issue is with the current state of the question
|
|
|
|
|
I know HTML... have been using for many years.
I know CSS... well kind of. Never bothered learning.
I've been jack of all trades for too long.
I want to get into Javascript and React...
But wanted to brush up on HTML and CSS and fill in gaps missing.
CSS - I want to know about layouts + how to make flexible for different displays.
What would be amazing for me is to see loooads of samples of layouts - starting from simple going to super complex and showing off CSS3 - but all in increments.
Just looking for some pointers.
Thanks.
|
|
|
|
|
CSS Tutorial, w3schools[^].
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
FreeCodeCamp has a great online curriculum for learning HTmL & CSS and then Javascript and React if you want.
|
|
|
|
|
Download a static site with all the prebuilt html and css and view it in the browser. Next, think of some major or potentially difficult change you'd like to make to it with regard to layout, size, font, etc. With the help of the browser's developer tools, you'll be able to identify the styles that need to change for the elements involved. You'll learn something from the existing css, and you'll learn a lot by trying to mess with it.
Today, most people use a css framework like Bootstrap or Materialize for accomplishing the flexibility for different displays you're looking for. Read the API documentation for one of these frameworks and look through the examples. Alternatively, there's a nice React ui framework from Microsoft over at https://developer.microsoft.com/en-us/fabric#/styles/web
It uses the same responsive grid layout principles that have become de facto standard.
If you want to get into React, you're going to need to know some Javascript because React uses Typescript which transpiles to JS and you'll need to understand possibly both languages. Additionally, you'll probably see some use of Redux.
|
|
|
|
|
I was also looking for same, and now got the answer.
|
|
|
|
|
I am new to programming and software development.
I am wanting to develop a software package that can edit game cards online and offline. then when the user is online they can upload their work if they need to. Ideally this application will be accessible on computers and mobile phones. I have heard that HTML 5 is really good for mobile application development because it is multiplatform. I have also done some research and NET.Core is multi platform as opposed to NET.framework. I understand that for the mobile and desktop application these may need to be built seperately.
I am wondering where is best to start. Can WinForms in visual studio connect online? or it this purely a desktop application? do i need to create a different style project for online/offline capability?
I am not quite sure where to start here.
|
|
|
|
|
WinForms is solely a desktop technology. Furthermore, it's Windows-only technology.
HTML5 is solely a markup language so it is nothing more than a visual representation of your app. Still, as you've mentioned uploading cards this means to me that you need a backend to persist it.
The way I imagine it is that you have a backend server (you might use .net core for that). And you have clients for platforms you need to support. Once the backend server if not available for some reason you persist data in a client's local storage. Otherwise, you persist it on a backend.
I think you should research more on a client-server programming model.
|
|
|
|
|
I am deploying an ASP .NET application to a website hosted on IIS. My requirement here is that the URL must end in .com and not .aspx. An example would be http://example.com and not http://example/default.aspx. How do I deploy an ASP .NET application so it uses the .com URL and not the not the .aspx page extension?
modified 3-Feb-20 10:35am.
|
|
|
|
|
I'm not sure I understand you correctly because you wrote "http://example/default.aspx" but I think what you meant was http://example.com/default.aspx."
You can't get rid of the .com unless you are using intranet sites.
I think you may be referring to url routing but not really sure what you are asking.
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
I think you are correct. What I need is http://example.com/default.aspx
|
|
|
|
|
holdorf wrote: http://example.com/default.aspx Then you register a domain and then upload your files to your hoster. That's it.
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
My problem is that this application is being hosted on an intranet. Normal online domain servers can't be used. I guess the question now is can you register a domain name on an intranet network? Do you need something like a Windows DNS server?
|
|
|
|
|
No, I don't think that would work. But why would you want to? If it's working on the intranet and that's where you need it, leave it alone. Why does the url matter?
It sounds like somebody does not understand things very well. An explanation might help.
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
I guess I need to explain it better. All I need to do is host the application on the intranet in IIS so browsing to the site is not in the format http://28.4.7.1/default.aspx or http://hostmachinename/default.aspx but in the fully quilified name of the domain name of the network. (ie. http://intranet.mil/default.aspx). Does this make sense?
|
|
|
|
|
holdorf wrote: Does this make sense? Sort of. So, you need to get with the networking people and add a dns entry on the domain for whatever domain you want to have so that all computers on the intranet can get to it.
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
I am the only technical person on this project so I am the network folks. Is this your answered to my question. I'm I correct: I need to add a DNS server on my network and register that IP address with the DNS server. Is this what I want to do?
|
|
|
|